module documentation

Compatibility namespace for sqlalchemy.sql.types.
Class ARRAY Represent a SQL Array type.
Class BIGINT The SQL BIGINT type.
Class ​Big​Integer 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 ​Date​Time A type for datetime.datetime() objects.
Class DECIMAL The SQL DECIMAL type.
Class ​Enum Generic Enum Type.
Class ​External​Type 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 ​Large​Binary 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 ​Pickle​Type Holds Python objects, which are serialized using pickle.
Class REAL The SQL REAL type.
Class SMALLINT The SQL SMALLINT type.
Class ​Small​Integer 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 ​Type​Decorator Allows the creation of types which add additional functionality to an existing type.
Class ​Type​Engine The ultimate base class for all SQL datatypes.
Class ​Unicode A variable length Unicode string type.
Class ​Unicode​Text An unbounded-length Unicode string type.
Class ​User​Defined​Type Base for user defined types.
Class VARBINARY The SQL VARBINARY type.
Class VARCHAR The SQL VARCHAR type.
Class ​Tuple​Type represent the composite type of a Tuple.