]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- sqlite
authorGaëtan de Menten <gdementen@gmail.com>
Tue, 17 Nov 2009 18:35:06 +0000 (18:35 +0000)
committerGaëtan de Menten <gdementen@gmail.com>
Tue, 17 Nov 2009 18:35:06 +0000 (18:35 +0000)
commit1bca0c42a3f4626f0273e61cf1b59ece37c3bd26
tree43f62bb857eb9fbd9824ff50a466b7c36f30ed6b
parentf96130aceffd4f69dd5ce4a1afaddd6f7f209cf7
- sqlite
    - DATE, TIME and DATETIME types can now take optional storage_format and
      regexp argument. storage_format can be used to store those types using
      a custom string format. regexp allows to use a custom regular expression
      to match string values from the database.
    - Time and DateTime types now use by a default a stricter regular
      expression to match strings from the database. Use the regexp argument
      if you are using data stored in a legacy format.
    - __legacy_microseconds__ on SQLite Time and DateTime types is not
      supported anymore. You should use the storage_format argument instead.
    - Date, Time and DateTime types are now stricter in what they accept as
      bind parameters: Date type only accepts date objects (and datetime ones,
      because they inherit from date), Time only accepts time objects, and
      DateTime only accepts date and datetime objects.
CHANGES
lib/sqlalchemy/dialects/sqlite/base.py