[sqlalchemy] Adding properties of wrapped object to association proxy

2013-08-02 Thread Ams Fwd
Hi All. Is there any way to transparently add the properties of the associated object to the association proxy? For e.g. if I have the following setup class UserModel(Base): name = sa.Column(sa.String(512)) orgs = association_proxy('org_member', 'org') class OrgModel(Base): name =

Re: [sqlalchemy] Hang while committing to sqlite db using ironpython

2013-08-02 Thread public
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'd recommending strace'ing your process to see what syscall causes the hang. On 08/02/2013 02:49 PM, Michael Bayer wrote: > > never been tested on IronPython. > > On Aug 1, 2013, at 11:18 PM, Agus Wang > wrote: > >> I'

Re: [sqlalchemy] Hang while committing to sqlite db using ironpython

2013-08-02 Thread Michael Bayer
never been tested on IronPython. On Aug 1, 2013, at 11:18 PM, Agus Wang wrote: > I've tested on python 2.7.3 with SQLAlchemy 0.8.2 and it works fine > I think the problem is the ironpython, is sqlalchemy compatible with > ironpython? > > On Thursday, August 1, 2013 5:56:36 PM UTC+7, Agus