class documentation

class MockConnection(base.Connectable):

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method ​_run​_ddl​_visitor Undocumented
Method compiler Undocumented
Method connect Return a _engine.Connection object.
Method create Undocumented
Method drop Undocumented
Method execute Executes the given construct and returns a _engine.CursorResult.
Method execution​_options Undocumented
Method schema​_for​_object Undocumented
Class Variable dialect Undocumented
Class Variable engine The _engine.Engine instance referred to by this .Connectable.
Class Variable name Undocumented
Instance Variable ​_dialect Undocumented

Inherited from Connectable:

Method ​_execute​_clauseelement Undocumented
Method ​_run​_visitor Undocumented
Method scalar Executes and returns the first column of the first row.
def __init__(self, dialect, execute):

Undocumented

def _run_ddl_visitor(self, visitorcallable, element, connection=None, **kwargs):

Undocumented

def compiler(self, statement, parameters, **kwargs):

Undocumented

def connect(self, **kwargs):

Return a _engine.Connection object.

Depending on context, this may be self if this object is already an instance of _engine.Connection, or a newly procured _engine.Connection if this object is an instance of _engine.Engine.

def create(self, entity, **kwargs):

Undocumented

def drop(self, entity, **kwargs):

Undocumented

def execute(self, object_, *multiparams, **params):
Executes the given construct and returns a _engine.CursorResult.
def execution_options(self, **kw):

Undocumented

def schema_for_object(self, obj):

Undocumented

dialect =

Undocumented

engine =

The _engine.Engine instance referred to by this .Connectable.

May be self if this is already an _engine.Engine.

name =

Undocumented

_dialect =

Undocumented