Flag | Description |
---|
| |
CLIENT_FOUND_ROWS | Return the number of matched rows instead of number of changed rows. |
CLIENT_NO_SCHEMA | Forbids the use of database.tablename.column syntax and forces the SQL parser to generate an error. |
CLIENT_COMPRESS | Use compression protocol |
CLIENT_IGNORE_SPACE | Allows spaces after function names. All function names will become reserved words. |
CLIENT_LOCAL_FILES | Allows LOAD DATA LOCAL statements |
CLIENT_MULTI_STATEMENTS | Allows the client to send multiple statements in one command. Statements will be divided by a semicolon. |
CLIENT_MULTI_RESULTS | Indicates that the client is able to handle multiple result sets from stored procedures or multi statements. This option will be automatically set if CLIENT_MULTI_STATEMENTS is set. |
CLIENT_REMEMBER_OPTIONS | Rembers options passed to mysql_optionsv(3) if a connect attempt failed. If MYSQL_OPTIONS_RECONNECT option was set to true, options will be saved and used for reconnection. |