예제 #1
0
def enable_sql_two_phase_commit(config, enable=True):
    Session.configure(twophase=enable)
예제 #2
0
def enable_sql_two_phase_commit(config, enable=True):
    Session.configure(twophase=enable)
예제 #3
0
def init_sqlalchemy(engine):
    """Initialise the SQLAlchemy models. This must be called before using
    using any of the SQLAlchemy managed the tables or classes in the model."""
    Session.configure(bind=engine)
    metadata.bind = engine
예제 #4
0
def init_sqlalchemy(engine):
    """Initialise the SQLAlchemy models. This must be called before using
    using any of the SQLAlchemy managed the tables or classes in the model."""
    Session.configure(bind=engine)
    metadata.bind = engine