Re: [sqlalchemy] Missing synonyms with multi-inheritance

2018-04-30 Thread Mike Bayer
On Mon, Apr 30, 2018 at 4:18 PM, Derek Lambert wrote: >> >> mmm what do you mean by "mixin" here, it looks like every class you >> have is mapped. >> > > They are mapped in the code, but that's only so I can query them. I > attempted to make LdapEntry and ActiveDirectoryEntry true mixin's by setti

Re: [sqlalchemy] Missing synonyms with multi-inheritance

2018-04-30 Thread Derek Lambert
> > > mmm what do you mean by "mixin" here, it looks like every class you > have is mapped. > > They are mapped in the code, but that's only so I can query them. I attempted to make LdapEntry and ActiveDirectoryEntry true mixin's by setting __abstract__ = True. > > this a heavy set of inher

Re: [sqlalchemy] Missing synonyms with multi-inheritance

2018-04-30 Thread Mike Bayer
On Mon, Apr 30, 2018 at 1:33 PM, Derek Lambert wrote: > I'm running into an issue in a hierarchy of single-table inheritance objects > with multiple inheritance. The objects represent users/groups/etc. from > various directories and applications. > > Retrieving the list of synonyms from an object

[sqlalchemy] Missing synonyms with multi-inheritance

2018-04-30 Thread Derek Lambert
I'm running into an issue in a hierarchy of single-table inheritance objects with multiple inheritance. The objects represent users/groups/etc. from various directories and applications. Retrieving the list of synonyms from an object at the bottom of the inheritance tree doesn't return the enti

[sqlalchemy] Integrating SQLAlchemy and wxPython4

2018-04-30 Thread Rich Shepard
I'm developing my first application using SQLAlchemy-1.2.7 and wxPython-4.0.1. I've found a 6-year-old blog post by Mike Driscoll illustrating a simple example. Are there other examples, tutorials, or open source applications from which I could learn? So far I have the database tables as clas