class documentation

class _DateTimeMixin(object):

Known subclasses: sqlalchemy.dialects.sqlite.DATE, sqlalchemy.dialects.sqlite.DATETIME, sqlalchemy.dialects.sqlite.TIME

View In Hierarchy

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.
def __init__(self, storage_format=None, regexp=None, **kw):
def adapt(self, cls, **kw):

Undocumented

def literal_processor(self, dialect):

Undocumented

_reg =

Undocumented

@property
format_is_text_affinity =

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.

New in version 1.0.0.