Re: [sqlalchemy] Reflecting user defined types

2012-03-16 Thread marq
Hi! Try out the ischema_names thing for now. Works like a charm - thanks a lot! I know about manually overwriting column types (which works a sw ell of course), but I wanted to keep the application independent from the table structure (which is in a migrate repository)... This looks very

[sqlalchemy] Reflecting user defined types

2012-03-14 Thread marq
Hello, I'm a beginner in SQLAlchemy - apologies if I'm asking for the obvious... I have a user defined type for Oracle (w/ SQLAlchemy 0.7.5) class OracleBinaryDouble(sqlalchemy.types.UserDefinedType): Native double / double precision floating point data type for Oracle.

Re: [sqlalchemy] Reflecting user defined types

2012-03-14 Thread Michael Bayer
On Mar 14, 2012, at 4:45 AM, marq wrote: Hello, I'm a beginner in SQLAlchemy - apologies if I'm asking for the obvious... I have a user defined type for Oracle (w/ SQLAlchemy 0.7.5) class OracleBinaryDouble(sqlalchemy.types.UserDefinedType): Native double / double