module documentation

Default implementations of per-dialect sqlalchemy.engine classes.

These are semi-private implementation classes which are only of importance to database dialect authors; dialects will usually use the classes here as the base class for their own corresponding classes.

Class ​Default​Dialect Default implementation of Dialect
Class ​Default​Execution​Context No class docstring; 0/10 property, 1/29 instance variable, 0/4 class variable, 5/30 methods, 4/4 class methods documented
Constant AUTOCOMMIT​_REGEXP Undocumented
Constant CACHE​_HIT Undocumented
Constant CACHE​_MISS Undocumented
Constant CACHING​_DISABLED Undocumented
Constant NO​_CACHE​_KEY Undocumented
Constant NO​_DIALECT​_SUPPORT Undocumented
Constant SERVER​_SIDE​_CURSOR​_RE Undocumented
Class _​Renders​Literal Undocumented
Class _​Str​Date Undocumented
Class _​Str​Date​Time Undocumented
Class _​Str​Time Undocumented
Class ​Str​Compile​Dialect Undocumented
AUTOCOMMIT_REGEXP =

Undocumented

Value
re.compile(r'\s*(?:UPDATE|INSERT|CREATE|DELETE|DROP|ALTER)',
           re.I|re.UNICODE)
CACHE_HIT =

Undocumented

Value
util.symbol('CACHE_HIT')
CACHE_MISS =

Undocumented

Value
util.symbol('CACHE_MISS')
CACHING_DISABLED =

Undocumented

Value
util.symbol('CACHING_DISABLED')
NO_CACHE_KEY =

Undocumented

Value
util.symbol('NO_CACHE_KEY')
NO_DIALECT_SUPPORT =

Undocumented

Value
util.symbol('NO_DIALECT_SUPPORT')
SERVER_SIDE_CURSOR_RE =

Undocumented

Value
re.compile(r'\s*SELECT',
           re.I|re.UNICODE)