Package MySQLdb :: Module cursors
[hide private]
[frames] | no frames]

Module cursors

source code

MySQLdb Cursors

This module implements Cursors of various types for MySQLdb. By default, MySQLdb uses the Cursor class.

Classes [hide private]
  BaseCursor
A base for Cursor classes.
  CursorStoreResultMixIn
This is a MixIn class which causes the entire result set to be stored on the client side, i.e.
  CursorUseResultMixIn
This is a MixIn class which causes the result set to be stored in the server and sent row-by-row to client side, i.e.
  CursorTupleRowsMixIn
This is a MixIn class that causes all rows to be returned as tuples, which is the standard form required by DB API.
  CursorDictRowsMixIn
This is a MixIn class that causes all rows to be returned as dictionaries.
  CursorOldDictRowsMixIn
This is a MixIn class that returns rows as dictionaries with the same key convention as the old Mysqldb (MySQLmodule).
  Cursor
This is the standard Cursor class that returns rows as tuples and stores the result set in the client.
  DictCursor
This is a Cursor class that returns rows as dictionaries and stores the result set in the client.
  SSCursor
This is a Cursor class that returns rows as tuples and stores the result set in the server.
  SSDictCursor
This is a Cursor class that returns rows as dictionaries and stores the result set in the server.
Variables [hide private]
  insert_values = re.compile(r'(?i)\svalues\s*(\(((?<!\\)\'.*?\)...
Variables Details [hide private]

insert_values

Value:
re.compile(r'(?i)\svalues\s*(\(((?<!\\)\'.*?\).*(?<!\\)?\'|.)+?\))')