[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-28 Thread Pradeep Jindal
On Monday 27 August 2007 19:57:21 Michael Bayer wrote: On Aug 24, 2007, at 8:39 AM, praddy wrote: ## from sqlalchemy import * meta = BoundMetaData('sqlite://', echo=False) # Parents table. parents = Table('parents', meta,

[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-27 Thread praddy
Currently, unable to find any solution for this problem. I think my little knowledge with respect to sqlalchemy is restricting me to get a solution for this issue. Anyone with somewhat more in-depth knowledge should be able to find a solution. Waiting... Regards, Pradeep Jindal On Aug 25, 1:15

[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-27 Thread Michael Bayer
On Aug 24, 2007, at 8:39 AM, praddy wrote: ## from sqlalchemy import * meta = BoundMetaData('sqlite://', echo=False) # Parents table. parents = Table('parents', meta, Column(id, Integer, primary_key=True), Column(data,

[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-27 Thread Pradeep Jindal
On Monday 27 August 2007 19:57:21 Michael Bayer wrote: On Aug 24, 2007, at 8:39 AM, praddy wrote: ## from sqlalchemy import * meta = BoundMetaData('sqlite://', echo=False) # Parents table. parents = Table('parents', meta,

[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-24 Thread Gaetan de Menten
You might be interested by: http://techspot.zzzeek.org/?p=13 (also in the examples directory of SQLAlchemy) On 8/24/07, praddy [EMAIL PROTECTED] wrote: ## from sqlalchemy import * meta = BoundMetaData('sqlite://', echo=False) #

[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-24 Thread Pradeep Jindal
On Friday 24 August 2007 19:20:00 Gaetan de Menten wrote: You might be interested by: http://techspot.zzzeek.org/?p=13 (also in the examples directory of SQLAlchemy) On 8/24/07, praddy [EMAIL PROTECTED] wrote: ## from sqlalchemy