Class |
ARRAY |
Represent a SQL Array type. |
Class |
BIGINT |
The SQL BIGINT type. |
Class |
BigInteger |
A type for bigger int integers. |
Class |
BINARY |
The SQL BINARY type. |
Class |
BLOB |
The SQL BLOB type. |
Class |
BOOLEAN |
The SQL BOOLEAN type. |
Class |
Boolean |
A bool datatype. |
Class |
CHAR |
The SQL CHAR type. |
Class |
CLOB |
The CLOB type. |
Class |
Concatenable |
A mixin that marks a type as supporting 'concatenation', typically strings. |
Class |
DATE |
The SQL DATE type. |
Class |
Date |
A type for datetime.date() objects. |
Class |
DATETIME |
The SQL DATETIME type. |
Class |
DateTime |
A type for datetime.datetime() objects. |
Class |
DECIMAL |
The SQL DECIMAL type. |
Class |
Enum |
Generic Enum Type. |
Class |
ExternalType |
mixin that defines attributes and behaviors specific to third-party datatypes. |
Class |
FLOAT |
The SQL FLOAT type. |
Class |
Float |
Type representing floating point types, such as FLOAT or REAL. |
Class |
Indexable |
A mixin that marks a type as supporting indexing operations, such as array or JSON structures. |
Class |
INTEGER |
The SQL INT or INTEGER type. |
Class |
Integer |
A type for int integers. |
Class |
Interval |
A type for datetime.timedelta() objects. |
Class |
JSON |
Represent a SQL JSON type. |
Class |
LargeBinary |
A type for large binary byte data. |
Class |
NCHAR |
The SQL NCHAR type. |
Class |
NUMERIC |
The SQL NUMERIC type. |
Class |
Numeric |
A type for fixed precision numbers, such as NUMERIC or DECIMAL. |
Class |
NVARCHAR |
The SQL NVARCHAR type. |
Class |
PickleType |
Holds Python objects, which are serialized using pickle. |
Class |
REAL |
The SQL REAL type. |
Class |
SMALLINT |
The SQL SMALLINT type. |
Class |
SmallInteger |
A type for smaller int integers. |
Class |
String |
The base for all string and character types. |
Class |
TEXT |
The SQL TEXT type. |
Class |
Text |
A variably sized string type. |
Class |
TIME |
The SQL TIME type. |
Class |
Time |
A type for datetime.time() objects. |
Class |
TIMESTAMP |
The SQL TIMESTAMP type. |
Class |
TypeDecorator |
Allows the creation of types which add additional functionality to an existing type. |
Class |
TypeEngine |
The ultimate base class for all SQL datatypes. |
Class |
Unicode |
A variable length Unicode string type. |
Class |
UnicodeText |
An unbounded-length Unicode string type. |
Class |
UserDefinedType |
Base for user defined types. |
Class |
VARBINARY |
The SQL VARBINARY type. |
Class |
VARCHAR |
The SQL VARCHAR type. |
Class |
TupleType |
represent the composite type of a Tuple. |