aboutsummaryrefslogtreecommitdiff
path: root/node_modules/mysql2/lib/constants/client.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/mysql2/lib/constants/client.js')
-rw-r--r--node_modules/mysql2/lib/constants/client.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/node_modules/mysql2/lib/constants/client.js b/node_modules/mysql2/lib/constants/client.js
new file mode 100644
index 0000000..43f9579
--- /dev/null
+++ b/node_modules/mysql2/lib/constants/client.js
@@ -0,0 +1,31 @@
+'use strict';
+
+// Manually extracted from mysql-5.5.23/include/mysql_com.h
+exports.LONG_PASSWORD = 0x00000001; /* new more secure passwords */
+exports.FOUND_ROWS = 0x00000002; /* found instead of affected rows */
+exports.LONG_FLAG = 0x00000004; /* get all column flags */
+exports.CONNECT_WITH_DB = 0x00000008; /* one can specify db on connect */
+exports.NO_SCHEMA = 0x00000010; /* don't allow database.table.column */
+exports.COMPRESS = 0x00000020; /* can use compression protocol */
+exports.ODBC = 0x00000040; /* odbc client */
+exports.LOCAL_FILES = 0x00000080; /* can use LOAD DATA LOCAL */
+exports.IGNORE_SPACE = 0x00000100; /* ignore spaces before '' */
+exports.PROTOCOL_41 = 0x00000200; /* new 4.1 protocol */
+exports.INTERACTIVE = 0x00000400; /* this is an interactive client */
+exports.SSL = 0x00000800; /* switch to ssl after handshake */
+exports.IGNORE_SIGPIPE = 0x00001000; /* IGNORE sigpipes */
+exports.TRANSACTIONS = 0x00002000; /* client knows about transactions */
+exports.RESERVED = 0x00004000; /* old flag for 4.1 protocol */
+exports.SECURE_CONNECTION = 0x00008000; /* new 4.1 authentication */
+exports.MULTI_STATEMENTS = 0x00010000; /* enable/disable multi-stmt support */
+exports.MULTI_RESULTS = 0x00020000; /* enable/disable multi-results */
+exports.PS_MULTI_RESULTS = 0x00040000; /* multi-results in ps-protocol */
+exports.PLUGIN_AUTH = 0x00080000; /* client supports plugin authentication */
+exports.CONNECT_ATTRS = 0x00100000; /* permits connection attributes */
+exports.PLUGIN_AUTH_LENENC_CLIENT_DATA = 0x00200000; /* Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41. */
+exports.CAN_HANDLE_EXPIRED_PASSWORDS = 0x00400000; /* Announces support for expired password extension. */
+exports.SESSION_TRACK = 0x00800000; /* Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet. */
+exports.DEPRECATE_EOF = 0x01000000; /* Can send OK after a Text Resultset. */
+
+exports.SSL_VERIFY_SERVER_CERT = 0x40000000;
+exports.REMEMBER_OPTIONS = 0x80000000;