Rechercher dans le manuel MySQL
28.7.7.30 mysql_get_option()
int mysql_get_option(MYSQL *mysql, enum mysql_option
option, const void *arg)
Description
Returns the current value of an option settable using
mysql_options()
. The value
should be treated as read only.
The option
argument is the option for which
you want its value. The arg
argument is a
pointer to a variable in which to store the option value.
arg
must be a pointer to a variable of the
type appropriate for the option
argument.
The following table shows which variable type to use for each
option
value.
arg Type |
Applicable option Values |
---|---|
unsigned int |
MYSQL_OPT_CONNECT_TIMEOUT ,
MYSQL_OPT_PROTOCOL ,
MYSQL_OPT_READ_TIMEOUT ,
MYSQL_OPT_RETRY_COUNT ,
MYSQL_OPT_SSL_FIPS_MODE ,
MYSQL_OPT_SSL_MODE ,
MYSQL_OPT_WRITE_TIMEOUT ,
MYSQL_OPT_ZSTD_COMPRESSION_LEVEL |
unsigned long |
MYSQL_OPT_MAX_ALLOWED_PACKET ,
MYSQL_OPT_NET_BUFFER_LENGTH |
bool |
MYSQL_ENABLE_CLEARTEXT_PLUGIN ,
MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS ,
MYSQL_OPT_GET_SERVER_PUBLIC_KEY ,
MYSQL_OPT_LOCAL_INFILE ,
MYSQL_OPT_OPTIONAL_RESULTSET_METADATA ,
MYSQL_OPT_RECONNECT ,
MYSQL_REPORT_DATA_TRUNCATION |
const char * |
MYSQL_DEFAULT_AUTH ,
MYSQL_OPT_BIND ,
MYSQL_OPT_COMPRESSION_ALGORITHMS ,
MYSQL_OPT_SSL_CA ,
MYSQL_OPT_SSL_CAPATH ,
MYSQL_OPT_SSL_CERT ,
MYSQL_OPT_SSL_CIPHER ,
MYSQL_OPT_SSL_CRL ,
MYSQL_OPT_SSL_CRLPATH ,
MYSQL_OPT_SSL_KEY ,
MYSQL_OPT_TLS_CIPHERSUITES ,
MYSQL_OPT_TLS_VERSION ,
MYSQL_PLUGIN_DIR ,
MYSQL_READ_DEFAULT_FILE ,
MYSQL_READ_DEFAULT_GROUP ,
MYSQL_SERVER_PUBLIC_KEY ,
MYSQL_SET_CHARSET_DIR ,
MYSQL_SET_CHARSET_NAME ,
MYSQL_SHARED_MEMORY_BASE_NAME |
argument not used | MYSQL_OPT_COMPRESS |
cannot be queried (error is returned) | MYSQL_INIT_COMMAND ,
MYSQL_OPT_CONNECT_ATTR_DELETE ,
MYSQL_OPT_CONNECT_ATTR_RESET ,
MYSQL_OPT_NAMED_PIPE |
Zero for success. Nonzero if an error occurred; this occurs
for option
values that cannot be queried.
The following call tests the
MYSQL_OPT_RECONNECT
option. After the call
returns successfully, the value of
reconnect
is true or false to indicate
whether automatic reconnection is enabled.
bool reconnect;
if (mysql_get_option(mysql, MYSQL_OPT_RECONNECT, &reconnect))
fprintf(stderr, "mysql_get_options() failed\n");
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-mysql-get-option.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.