标签:
The capability flags are used by the client and server to indicate which features they support and want to use.
CLIENT_LONG_PASSWORD
Use the improved version of Old Password Authentication
.
Assumed to be set since 4.1.1.
0x00000001
CLIENT_FOUND_ROWS
Send found rows
instead of affected rows
in EOF_Packet
.
0x00000002
CLIENT_LONG_FLAG
Longer flags in Protocol::ColumnDefinition320
.
0x00000004
Supports longer flags.
Expects longer flags.
CLIENT_CONNECT_WITH_DB
Database (schema) name can be specified on connect in Handshake Response Packet
.
0x00000008
Supports schema-name in Handshake Response Packet
.
Handshake Response Packet
contains a schema-name.
CLIENT_NO_SCHEMA
0x00000010
Do not permit database.table.column
.
CLIENT_COMPRESS
Compression protocol supported.
0x00000020
Supports compression.
Switches to Compression compressed protocol after successful authentication.
CLIENT_ODBC
0x00000040
Special handling of ODBC behavior.
No special behavior since 3.22.
CLIENT_LOCAL_FILES
Can use LOAD DATA LOCAL
.
0x00000080
Enables the LOCAL INFILE request of LOAD DATA|XML.
Will handle LOCAL INFILE request.
CLIENT_IGNORE_SPACE
0x00000100
Parser can ignore spaces before ‘(‘
.
Let the parser ignore spaces before ‘(‘
.
CLIENT_PROTOCOL_41
0x00000200
Supports the 4.1 protocol.
Uses the 4.1 protocol.
this value was CLIENT_CHANGE_USER
in 3.22, unused in 4.0
CLIENT_INTERACTIVE
wait_timeout
versus wait_interactive_timeout
.
0x00000400
Supports interactive and noninteractive clients.
Client is interactive.
CLIENT_SSL
0x00000800
Supports SSL.
Switch to SSL after sending the capability-flags.
CLIENT_IGNORE_SIGPIPE
0x00001000
Do not issue SIGPIPE
if network failures occur (libmysqlclient only).
CLIENT_TRANSACTIONS
0x00002000
Can send status flags in EOF_Packet
.
Expects status flags in EOF_Packet
.
This flag is optional in 3.23, but always set by the server since 4.0.
CLIENT_RESERVED
Unused.
0x00004000
Was named CLIENT_PROTOCOL_41
in 4.1.0.
CLIENT_SECURE_CONNECTION
0x00008000
Supports Authentication::Native41
.
Supports Authentication::Native41
.
CLIENT_MULTI_STATEMENTS
0x00010000
Can handle multiple statements per COM_QUERY
and COM_STMT_PREPARE
.
May send multiple statements per COM_QUERY
and COM_STMT_PREPARE
.
Was named CLIENT_MULTI_QUERIES
in 4.1.0, renamed later.
CLIENT_MULTI_RESULTS
CLIENT_PS_MULTI_RESULTS
Can send multiple resultsets for COM_STMT_EXECUTE
.
Can handle multiple resultsets for COM_STMT_EXECUTE
.
0x00040000
CLIENT_PLUGIN_AUTH
0x00080000
Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
Supports authentication plugins.
CLIENT_CONNECT_ATTRS
0x00100000
Permits connection attributes in Protocol::HandshakeResponse41
.
Sends connection attributes in Protocol::HandshakeResponse41
.
CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA
0x00200000
Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41
.
Length of auth response data in Protocol::HandshakeResponse41
is a length-encoded integer.
The flag was introduced in 5.6.6, but had the wrong value.
CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS
0x00400000
Announces support for expired password extension.
Can handle expired passwords.
CLIENT_SESSION_TRACK
0x00800000
Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
Expects the server to send sesson-state changes after a OK packet.
CLIENT_DEPRECATE_EOF
0x01000000
Can send OK after a Text Resultset.
Expects an OK (instead of EOF) after the resultset rows of a Text Resultset.
To support CLIENT_SESSION_TRACK
, additional information must be sent after all successful commands. Although the OK packet is extensible, the EOF packet is not due to the overlap of its bytes with the content of the Text Resultset Row.
Therefore, the EOF packet in the Text Resultset is replaced with an OK packet. EOF packets are deprecated as of MySQL 5.7.5.
标签:
原文地址:http://www.cnblogs.com/JiangLe/p/5701395.html