[sqlalchemy] Concrete Inheritance problem

2007-11-19 Thread Partha
appreciate any help in this regard.. Thanks Partha Here is the full program.. Thanks.. from sqlalchemy import create_engine, MetaData, Table, Column, types, Sequence from sqlalchemy import Table, Column, Integer, String, DECIMAL, Numeric, ForeignKey, DateTime, Boolean, CHAR from sqlalchemy.orm

[sqlalchemy] Re: Concrete Inheritance problem

2007-11-19 Thread Partha
Thank you! . That worked great.. Partha On Nov 19, 2:41 pm, [EMAIL PROTECTED] wrote: if it's about concrete inheritance, then employee contains ALL info it needs, that is, a full copy of person + whatever else is there, and is completely independent from person table. so for that case