MySQLdb.cursors.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.
MySQLdb.cursors.SSDictCursor:
This is a Cursor class that returns rows as dictionaries and
stores the result set in the server.
MySQLdb.cursors.SSCursor:
This is a Cursor class that returns rows as tuples and stores
the result set in the server.
datetime.date:
date(year, month, day) --> date object
MySQLdb.cursors.SSDictCursor:
This is a Cursor class that returns rows as dictionaries and
stores the result set in the server.
MySQLdb.cursors.DictCursor:
This is a Cursor class that returns rows as dictionaries and
stores the result set in the client.
MySQLdb.cursors.CursorOldDictRowsMixIn:
This is a MixIn class that returns rows as dictionaries with the
same key convention as the old Mysqldb (MySQLmodule).
MySQLdb.cursors.CursorTupleRowsMixIn:
This is a MixIn class that causes all rows to be returned as
tuples, which is the standard form required by DB API.
MySQLdb.cursors.SSCursor:
This is a Cursor class that returns rows as tuples and stores
the result set in the server.
MySQLdb.cursors.Cursor:
This is the standard Cursor class that returns rows as tuples
and stores the result set in the client.
datetime.time:
time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) -->
a time object
_mysql_exceptions.DataError:
Exception raised for errors that are due to problems with the
processed data like division by zero, numeric value out of range,
etc.
_mysql_exceptions.OperationalError:
Exception raised for errors that are related to the database's
operation and not necessarily under the control of the programmer,
e.g.