Hi,

If I create a table with a default.

create table T (id number primary key, data number default NULL)

Then reflect this table.

then using the ORM I trigger an insert, but only into the id column
and flush()
then I try to access the 'data' attribute

this causes a select, to get the actual value of 'data'

Is there any simple way to turn this behavior off`..  i.e for
sqlalchemy to pretend the server default does not exist..?


Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to