sqlalchemy :: types :: Integer :: Class Integer
[hide private]
[frames] | no frames]

Class Integer

                    object --+    
                             |    
                 _DateAffinity --+
                                 |
            object --+           |
                     |           |
sql.visitors.Visitable --+       |
                         |       |
              AbstractType --+   |
                             |   |
                    TypeEngine --+
                                 |
                                Integer

A type for ``int`` integers.

Nested Classes [hide private]

Inherited from sql.visitors.Visitable: __metaclass__

Instance Methods [hide private]
 
_compiler_dispatch(self, visitor, **kw)
 
_expression_adaptations(...)
 
get_dbapi_type(self, dbapi)
Return the corresponding type object from the underlying DB-API, if any.

Inherited from _DateAffinity (private): _adapt_expression

Inherited from TypeEngine: __getstate__, adapt, bind_processor, dialect_impl, result_processor

Inherited from TypeEngine (private): _impl_dict

Inherited from AbstractType: __init__, __repr__, compare_values, compile, copy_value, is_mutable

Inherited from AbstractType (private): _coerce_compared_value, _compare_type_affinity, _type_affinity

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]
  __visit_name__ = 'integer'

Inherited from _DateAffinity (private): _blank_dict

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

_expression_adaptations(...)

 
Overrides: _expression_adaptations

get_dbapi_type(self, dbapi)

 
Return the corresponding type object from the underlying DB-API, if
any.

 This can be useful for calling ``setinputsizes()``, for example.

Overrides: AbstractType.get_dbapi_type
(inherited documentation)