]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added "native_datetime=True" flag to create_engine().
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Feb 2010 02:23:32 +0000 (02:23 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Feb 2010 02:23:32 +0000 (02:23 +0000)
commit44626e96595f25f9580e45ffa930fdec0f1b07a8
treec478fa954db1fac6a56189003eed28f21fdff61e
parente38b11928a4d0902dde5c45e0df99565df85d6ba
   - Added "native_datetime=True" flag to create_engine().
     This will cause the DATE and TIMESTAMP types to skip
     all bind parameter and result row processing, under
     the assumption that PARSE_DECLTYPES has been enabled
     on the connection.  Note that this is not entirely
     compatible with the "func.current_date()", which
     will be returned as a string. [ticket:1685]
CHANGES
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/dialects/sqlite/pysqlite.py
test/dialect/test_sqlite.py