[sqlalchemy] Re: One To Many Polymorphic Association.

2007-08-27 Thread praddy
am, Pradeep Jindal [EMAIL PROTECTED] wrote: 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

[sqlalchemy] One To Many Polymorphic Association.

2007-08-24 Thread praddy
## from sqlalchemy import * meta = BoundMetaData('sqlite://', echo=False) # Parents table. parents = Table('parents', meta, Column(id, Integer, primary_key=True), Column(data, String(50), nullable=False) ) #