Search



Search Results
Displaying 791 to 800 of 818 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-options.html
If this option is not specified, the default value is 1 (1 retry if the initial call is interrupted for 2 tries total). MYSQL_SET_CHARSET_DIR (argument type: char *) The path name of the directory that contains character set definition files. int ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect.html
MYSQL * mysql_real_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned long client_flag) Description Note mysql_real_connect() is a synchronous function.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-server-init.html
int mysql_server_init(int argc, char **argv, char **groups) Description This function initializes the MySQL client library, which must be done before you call any other MySQL function. Note To avoid memory leaks after the application is done using ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-session-track-get-first.html
int mysql_session_track_get_first(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length) Description MySQL implements a session tracker mechanism whereby the server returns information about session state changes to ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-thread-init.html
bool mysql_thread_init(void) Description This function must be called early within each created thread to initialize thread-specific variables. Calling mysql_thread_init() is automatically handled by mysql_init(), mysql_library_init(), ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-use-result.html
mysql_use_result() initiates a result set retrieval but does not actually read the result set into the client like mysql_store_result() does. MYSQL_RES * mysql_use_result(MYSQL *mysql) Description After invoking mysql_real_query() or mysql_query(), ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/client-plugin-descriptors.html
init: A once-only initialization function, or NULL if there is no such function. deinit: A once-only deinitialization function, or NULL if there is no such function. Each client plugin must have a descriptor that provides information to the client ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-types.html
That is, when you install a parser plugin initially, that does not cause it to be used for any full-text operations. The plugin API enables creation of plugins that implement several capabilities: Loadable functions (UDFs) Storage engines Full-text ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-server-side.html
The structure definition, found in plugin_auth.h, looks like this: typedef struct st_mysql_server_auth_info { char *user_name; unsigned int user_name_length; const char *auth_string; unsigned long auth_string_length; char ... Declare the server-side ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-daemon-plugins.html
A daemon plugin is a simple type of plugin used for code that should be run by the server but that does not communicate with it. This section describes how to write a daemon server plugin, using the example plugin found in the plugin/daemon_example ...
Displaying 791 to 800 of 818 total results