Class f.c.g.g.SQLAlchemyHandler(DataHandler):

Part of fixture.command.generate.generate_sqlalchemy View In Hierarchy

Known subclasses: fixture.command.generate.generate_sqlalchemy.SQLAlchemyAssignedMapperHandler, fixture.command.generate.generate_sqlalchemy.SQLAlchemyMappedClassHandler, fixture.command.generate.generate_sqlalchemy.SQLAlchemyTableHandler

handles genration of fixture code from a sqlalchemy data source.
Class RecordSetAdapter adapts a sqlalchemy record set object for use in a
Method __init__ Undocumented
Method add_fixture_set Undocumented
Method begin Undocumented
Method commit Undocumented
Method rollback Undocumented
Method find Undocumented
Method findall gets record set for query.
Static Method recognizes returns True if obj is not None.
Method sets yields FixtureSet for each row in SQLObject.
def __init__(self, object_path, options, connection=None, **kw):
Undocumented
def add_fixture_set(self, fset):
Undocumented
def begin(self, *a, **kw):
Undocumented
def commit(self):
Undocumented
def rollback(self):
Undocumented
def find(self, idval):
Undocumented
def findall(self, query=None):
gets record set for query.
@staticmethod
def recognizes(object_path, obj=None):
returns True if obj is not None.

this method is just a starting point for sqlalchemy handlers.

def sets(self):
yields FixtureSet for each row in SQLObject.
API Documentation for fixture, generated by pydoctor.