comparison MySQLdb/constants/CLIENT.py @ 15:a275593a1630 MySQLdb

More doc fixes
author adustman
date Mon, 26 Feb 2007 18:59:22 +0000
parents e48810735f11
children
comparison
equal deleted inserted replaced
14:7773efbe9b30 15:a275593a1630
1 """MySQL CLIENT constants 1 """
2 MySQL CLIENT constants
3 ----------------------
2 4
3 These constants are used when creating the connection. Use bitwise-OR 5 These constants are used when creating the connection. Use bitwise-OR
4 (|) to combine options together, and pass them as the client_flags 6 (|) to combine options together, and pass them as the client_flags
5 parameter to MySQLdb.Connection. For more information on these flags, 7 parameter to MySQLdb.Connection. For more information on these flags,
6 see the MySQL C API documentation for mysql_real_connect(). 8 see the MySQL C API documentation for mysql_real_connect().
7
8 """ 9 """
10 __revision__ = "$Revision$"[11:-2]
11 __author__ = "$Author$"[9:-2]
9 12
10 LONG_PASSWORD = 1 13 LONG_PASSWORD = 1
11 FOUND_ROWS = 2 14 FOUND_ROWS = 2
12 LONG_FLAG = 4 15 LONG_FLAG = 4
13 CONNECT_WITH_DB = 8 16 CONNECT_WITH_DB = 8