SQLAlchemy 0.3 Documentation

Multiple Pages | One Page
Version: 0.3.8 Last Updated: 06/02/07 17:01:58

module sqlalchemy.types

class BLOB(Binary)

back to section top

class BOOLEAN(Boolean)

back to section top

class Binary(TypeEngine)

def __init__(self, length=None)
def adapt(self, impltype)
def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def get_dbapi_type(self, dbapi)
back to section top

class Boolean(TypeEngine)

back to section top

class CHAR(String)

back to section top

class CLOB(TEXT)

back to section top

class DATE(Date)

back to section top

class DATETIME(DateTime)

back to section top

class DECIMAL(Numeric)

back to section top

class Date(TypeEngine)

Implement a type for datetime.date() objects.

def get_dbapi_type(self, dbapi)
back to section top

class DateTime(TypeEngine)

Implement a type for datetime.datetime() objects.

def __init__(self, timezone=False)
def adapt(self, impltype)
def get_dbapi_type(self, dbapi)
back to section top

class FLOAT(Float)

back to section top

class Float(Numeric)

def __init__(self, precision=10)
def adapt(self, impltype)
back to section top

class INT(Integer)

back to section top

class Integer(TypeEngine)

Integer datatype.

def get_dbapi_type(self, dbapi)
back to section top

class NCHAR(Unicode)

back to section top

class NullTypeEngine(TypeEngine)

def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def get_col_spec(self)
back to section top

class Numeric(TypeEngine)

def __init__(self, precision=10, length=2)
def adapt(self, impltype)
def get_dbapi_type(self, dbapi)
back to section top

class PickleType(MutableType,TypeDecorator)

def __init__(self, protocol=2, pickler=None, mutable=True)
def compare_values(self, x, y)
def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def copy_value(self, value)
def is_mutable(self)
back to section top

class SMALLINT(SmallInteger)

back to section top

class SmallInteger(Integer)

Smallint datatype.

back to section top

class String(TypeEngine)

def __init__(self, length=None, convert_unicode=False)
def adapt(self, impltype)
def compare_values(self, x, y)
def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def get_dbapi_type(self, dbapi)
def get_search_list(self)
back to section top

class TEXT(String)

back to section top

class TIME(Time)

back to section top

class TIMESTAMP(DateTime)

back to section top

class Time(TypeEngine)

Implement a type for datetime.time() objects.

def __init__(self, timezone=False)
def adapt(self, impltype)
def get_dbapi_type(self, dbapi)
back to section top

class TypeDecorator(AbstractType)

def __init__(self, *args, **kwargs)
def compare_values(self, x, y)
def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def copy(self)
def copy_value(self, value)
def dialect_impl(self, dialect)
def get_col_spec(self)
def get_dbapi_type(self, dbapi)
def is_mutable(self)
back to section top

class TypeEngine(AbstractType)

def __init__(self, *args, **params)
def adapt(self, cls)
def convert_bind_param(self, value, dialect)
def convert_result_value(self, value, dialect)
def dialect_impl(self, dialect)
def get_col_spec(self)
def get_search_list(self)

return a list of classes to test for a match when adapting this type to a dialect-specific type.

back to section top

class Unicode(String)

def __init__(self, length=None, **kwargs)
back to section top

class VARCHAR(String)

back to section top
Up: Generated Documentation | Previous: module sqlalchemy.schema | Next: module sqlalchemy.engine