class MockConnection(base.Connectable):
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. |
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
.
_engine.CursorResult
.