MySQLdb.constants.CLIENT | index MySQLdb/constants/CLIENT.py |
MySQL CLIENT constants
These constants are used when creating the connection. Use bitwise-OR
(|) to combine options together, and pass them as the client_flags
parameter to MySQLdb.Connection. For more information on these flags,
see the MySQL C API documentation for mysql_real_connect().
Data | ||
CHANGE_USER = 512 COMPRESS = 32 CONNECT_WITH_DB = 8 FOUND_ROWS = 2 IGNORE_SIGPIPE = 4096 IGNORE_SPACE = 256 INTERACTIVE = 1024 LOCAL_FILES = 128 LONG_FLAG = 4 LONG_PASSWORD = 1 MULTI_RESULTS = 131072 MULTI_STATEMENTS = 65536 NO_SCHEMA = 16 ODBC = 64 RESERVED = 16384 SECURE_CONNECTION = 32768 SSL = 2048 TRANSACTIONS = 8192 |