class _DateTimeMixin(object):
Known subclasses: sqlalchemy.dialects.sqlite.DATE
, sqlalchemy.dialects.sqlite.DATETIME
, sqlalchemy.dialects.sqlite.TIME
Undocumented
Method | __init__ |
Undocumented |
Method | adapt |
Undocumented |
Method | literal_processor |
Undocumented |
Instance Variable | _reg |
Undocumented |
Instance Variable | _storage_format |
Undocumented |
Property | format_is_text_affinity |
return True if the storage format will automatically imply a TEXT affinity. |
sqlalchemy.dialects.sqlite.DATE
, sqlalchemy.dialects.sqlite.DATETIME
, sqlalchemy.dialects.sqlite.TIME
Undocumented
return True if the storage format will automatically imply a TEXT affinity.
If the storage format contains no non-numeric characters, it will imply a NUMERIC storage format on SQLite; in this case, the type will generate its DDL as DATE_CHAR, DATETIME_CHAR, TIME_CHAR.