Re: [sqlalchemy] Retreiving datetime(6) value using sqlalchemy

2013-07-12 Thread Michael Bayer
engine.execute(some string) doesn't know anything about what you are querying or what kind of data is in the result, it is a pure pass-through to the DBAPI, which is MySQL-Python by default here. So your issue is with mysql-python. Either upgrade it, report a bug to them, or use a different

[sqlalchemy] Retreiving datetime(6) value using sqlalchemy

2013-07-11 Thread Matt
Hi all, I have been writing to my database using func.now(6) for datetime(6) valued columns and it has worked perfectly. However, I've recently run into an issue with querying for these values. It would appear that every time I query for the values in datetime(6) columns it returns None.