class MxODBCConnector(Connector):
Known subclasses: sqlalchemy.dialects.mssql.mxodbc.MSDialect_mxodbc
, sqlalchemy.dialects.sybase.mxodbc.SybaseDialect_mxodbc
Undocumented
Class Method | dbapi |
Undocumented |
Class Method | _load_mx_exceptions |
Import mxODBC exception classes into the module namespace, as if they had been imported normally. This is done here to avoid requiring all SQLAlchemy users to install mxODBC. |
Method | _error_handler |
Return a handler that adjusts mxODBC's raised Warnings to emit Python standard warnings. |
Method | _get_direct |
Undocumented |
Method | _get_server_version_info |
Undocumented |
Method | create_connect_args |
Return a tuple of *args, **kwargs for creating a connection. |
Method | do_execute |
Undocumented |
Method | do_executemany |
Undocumented |
Method | is_disconnect |
Undocumented |
Method | on_connect |
Undocumented |
Class Variable | driver |
Undocumented |
Class Variable | supports_native_decimal |
Undocumented |
Class Variable | supports_sane_multi_rowcount |
Undocumented |
Class Variable | supports_unicode_binds |
Undocumented |
Class Variable | supports_unicode_statements |
Undocumented |
Return a tuple of *args, **kwargs for creating a connection.
The mxODBC 3.x connection constructor looks like this:
- connect(dsn, user='', password='',
- clear_auto_commit=1, errorhandler=None)
This method translates the values in the provided URI into args and kwargs needed to instantiate an mxODBC Connection.
The arg 'errorhandler' is not used by SQLAlchemy and will not be populated.