[sqlalchemy] Oracle DATE column reflection

2010-03-11 Thread Grimsqueaker
When I use autoload=True to reflect an Oracle table with a DATE column containing a full date and time, the resulting python object is a datetime.date, not datetime.datetime. Before updating to SA 0.6 I used to get a datetime.datetime as expected. If I override the reflected column with the

Re: [sqlalchemy] Oracle DATE column reflection

2010-03-11 Thread Michael Bayer
Grimsqueaker wrote: When I use autoload=True to reflect an Oracle table with a DATE column containing a full date and time, the resulting python object is a datetime.date, not datetime.datetime. Before updating to SA 0.6 I used to get a datetime.datetime as expected. If I override the