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

Module MySQLdb.cursors

MySQLdb Cursors

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


Classes
BaseCursor A base for Cursor classes.
Cursor This is the standard Cursor class that returns rows as tuples and stores the result set in the client.
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).
CursorStoreResultMixIn This is a MixIn class which causes the entire result set to be stored on the 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.
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.
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.

Variable Summary
SRE_Pattern insert_values = \svalues\s*(\(((?!\\)'.*?\).*(?!\\)?'|.)...

Variable Details

insert_values

Type:
SRE_Pattern
Value:
\svalues\s*(\(((?!\\)'.*?\).*(?!\\)?'|.)+?\))                          

Generated by Epydoc 2.1 on Sat Mar 3 21:14:16 2007 http://epydoc.sf.net