SQLAlchemy 0.4 Documentation

Multiple Pages | One Page
Version: 0.4.1 Last Updated: 11/18/07 17:50:18

module sqlalchemy.databases.sqlite

Module Functions

def descriptor()

class DateTimeMixin(object)

def bind_processor(self, dialect)
back to section top

class PassiveDefault(DefaultGenerator)

A default that takes effect on the database side.

def __init__(self, arg, **kwargs)

Construct a new PassiveDefault.

back to section top

class SLBinary(Binary)

def get_col_spec(self)
back to section top

class SLBoolean(Boolean)

def bind_processor(self, dialect)
def get_col_spec(self)
def result_processor(self, dialect)
back to section top

class SLChar(CHAR)

def get_col_spec(self)
back to section top

class SLDate(DateTimeMixin,Date)

def get_col_spec(self)
def result_processor(self, dialect)
back to section top

class SLDateTime(DateTimeMixin,DateTime)

def get_col_spec(self)
def result_processor(self, dialect)
back to section top

class SLInteger(Integer)

def get_col_spec(self)
back to section top

class SLNumeric(Numeric)

def bind_processor(self, dialect)
def get_col_spec(self)
back to section top

class SLSmallInteger(SmallInteger)

def get_col_spec(self)
back to section top

class SLString(String)

def get_col_spec(self)
back to section top

class SLText(TEXT)

def get_col_spec(self)
back to section top

class SLTime(DateTimeMixin,Time)

def get_col_spec(self)
def result_processor(self, dialect)
back to section top

class SQLiteCompiler(DefaultCompiler)

def for_update_clause(self, select)
def limit_clause(self, select)
def visit_cast(self, cast, **kwargs)
def visit_insert(self, insert_stmt)
back to section top

class SQLiteDialect(DefaultDialect)

def __init__(self, **kwargs)

Construct a new SQLiteDialect.

def create_connect_args(self, url)
def create_execution_context(self, connection, **kwargs)
def dbapi(cls)
def has_table(self, connection, table_name, schema=None)
def oid_column_name(self, column)
def reflecttable(self, connection, table, include_columns)
def server_version_info(self, connection)
def table_names(self, connection, schema)
def type_descriptor(self, typeobj)
back to section top

class SQLiteExecutionContext(DefaultExecutionContext)

def is_select(self)
def post_exec(self)
back to section top

class SQLiteIdentifierPreparer(IdentifierPreparer)

def __init__(self, dialect)

Construct a new SQLiteIdentifierPreparer.

back to section top

class SQLiteSchemaDropper(SchemaDropper)

back to section top

class SQLiteSchemaGenerator(SchemaGenerator)

def get_column_specification(self, column, **kwargs)
back to section top
Up: API Documentation | Previous: module sqlalchemy.ext.sqlsoup | Next: module sqlalchemy.databases.postgres