]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
link date/time classes correctly, helps [ticket:2244]
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 4 Aug 2011 19:20:34 +0000 (15:20 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 4 Aug 2011 19:20:34 +0000 (15:20 -0400)
lib/sqlalchemy/dialects/sqlite/base.py

index e2f5f23159f623a5d178cd25d8036fc85a2c597c..049f59c864f77aa871a8451118d6e20ac3242c61 100644 (file)
@@ -16,7 +16,7 @@ SQLite does not have built-in DATE, TIME, or DATETIME types, and pysqlite does n
 out of the box functionality for translating values between Python `datetime` objects
 and a SQLite-supported format.  SQLAlchemy's own :class:`~sqlalchemy.types.DateTime`
 and related types provide date formatting and parsing functionality when SQlite is used.
-The implementation classes are :class:`DATETIME`, :class:`DATE` and :class:`TIME`.
+The implementation classes are :class:`~.sqlite.DATETIME`, :class:`~.sqlite.DATE` and :class:`~.sqlite.TIME`.
 These types represent dates and times as ISO formatted strings, which also nicely
 support ordering.   There's no reliance on typical "libc" internals for these functions
 so historical dates are fully supported.