Re: Convert DDL to ORM

2011-10-29 Thread Lie Ryan
On 10/25/2011 03:30 AM, Alec Taylor wrote: Good morning, I'm often generating DDLs from EER->Logical diagrams using tools such as PowerDesigner and Oracle Data Modeller. I've recently come across an ORM library (SQLalchemy), and it seems like a quite useful abstraction. Is there a way to conve

Re: Convert DDL to ORM

2011-10-24 Thread Martin KomoĊˆ
Hi, for the project I'm working on right now I've written a simple "SQL create script to ORM generator". I use SQLalchemy as well and this generator takes all tables and prepares classes, maps them to tables, introspects them and creates explicit attribute definitions in the classes. Contact me of

Convert DDL to ORM

2011-10-24 Thread Alec Taylor
Good morning, I'm often generating DDLs from EER->Logical diagrams using tools such as PowerDesigner and Oracle Data Modeller. I've recently come across an ORM library (SQLalchemy), and it seems like a quite useful abstraction. Is there a way to convert my DDL to ORM code? Thanks for all sugges