Viewing file: MySQLdb-module.html (15.9 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
MySQLdb
Package MySQLdb
MySQLdb - A DB API v2.0 compatible interface to MySQL.
This package is a wrapper around _mysql, which mostly implements the
MySQL C API.
connect() -- connects to server
See the C API specification and the MySQL documentation for more info
on other items.
For information on how MySQLdb handles type conversion, see the
MySQLdb.converters module.
Function Summary |
|
Binary(x)
|
|
connect (*args,
**kwargs)
Factory function for connections.Connection. |
|
Connect (*args,
**kwargs)
Factory function for connections.Connection. |
|
Connection (*args,
**kwargs)
Factory function for connections.Connection. |
Variable Summary |
str |
apilevel = '2.0'
|
DBAPISet |
BINARY = DBAPISet(252, 251, 250, 249)
|
DBAPISet |
DATE = DBAPISet(10, 14)
|
DBAPISet |
NUMBER = DBAPISet(0, 5, 4, 9, 3, 8, 1, 13)
|
str |
paramstyle = 'format'
|
DBAPISet |
ROWID = DBAPISet()
|
DBAPISet |
STRING = DBAPISet(1, 247, 254, 253)
|
int |
threadsafety = 1 |
DBAPISet |
TIME = DBAPISet(11,)
|
DBAPISet |
TIMESTAMP = DBAPISet(7, 12)
|
tuple |
version_info = (1, 1, 9, 'final', 1)
|
connect(*args,
**kwargs)
Factory function for connections.Connection.
-
|
Connect(*args,
**kwargs)
Factory function for connections.Connection.
-
|
Connection(*args,
**kwargs)
Factory function for connections.Connection.
-
|
apilevel
-
- Type:
-
str
- Value:
|
BINARY
-
- Type:
-
DBAPISet
- Value:
DBAPISet(252, 251, 250, 249)
|
|
DATE
-
- Type:
-
DBAPISet
- Value:
|
NUMBER
-
- Type:
-
DBAPISet
- Value:
DBAPISet(0, 5, 4, 9, 3, 8, 1, 13)
|
|
paramstyle
-
- Type:
-
str
- Value:
|
ROWID
-
- Type:
-
DBAPISet
- Value:
|
STRING
-
- Type:
-
DBAPISet
- Value:
DBAPISet(1, 247, 254, 253)
|
|
threadsafety
-
- Type:
-
int
- Value:
|
TIME
-
- Type:
-
DBAPISet
- Value:
|
TIMESTAMP
-
- Type:
-
DBAPISet
- Value:
|
version_info
-
- Type:
-
tuple
- Value:
|
|