?? client.py
字號:
"""MySQL CLIENT constantsThese constants are used when creating the connection. Use bitwise-OR(|) to combine options together, and pass them as the client_flagsparameter to MySQLdb.Connection. For more information on these flags,see the MySQL C API documentation for mysql_real_connect()."""LONG_PASSWORD = 1FOUND_ROWS = 2LONG_FLAG = 4CONNECT_WITH_DB = 8NO_SCHEMA = 16COMPRESS = 32ODBC = 64LOCAL_FILES = 128IGNORE_SPACE = 256CHANGE_USER = 512INTERACTIVE = 1024SSL = 2048IGNORE_SIGPIPE = 4096TRANSACTIONS = 8192 # mysql_com.h was WRONG prior to 3.23.35RESERVED = 16384SECURE_CONNECTION = 32768MULTI_STATEMENTS = 65536MULTI_RESULTS = 131072
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -