Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-prepare-for-migration.html
In a shell on host 198.51.100.102, on which the management node resides: $> ps -ef | grep ndb_mgmd ari 8118 1 0 20:51 ? 00:00:04 /home/ari/bin/cluster/bin/ndb_mgmd --config-file=/home/ari/bin/cluster/wild-cluster/config.ini ... The next step in the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-data-structures.html
This section describes data structures specific to asynchronous C API functions. For information about general-purpose C API data structures, see Section 5.2, “C API Basic Data Structures”. The value may be one of the CONNECT_STAGE_ symbols ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-data-structures.html
If set, you must initialize the MYSQL_RPL structure GTID-related members from gtid_set_encoded_size to gtid_set_arg before calling mysql_binlog_open(). C API functions for processing a replication event stream from a server require a connection ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
To use a MYSQL_BIND structure, zero its contents to initialize it, then set its members appropriately. For example, to declare and initialize an array of three MYSQL_BIND structures, use this code: MYSQL_BIND bind[3]; memset(bind, 0, sizeof(bind)); ... Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a pointer to a MYSQL_STMT data ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-function-reference.html
The following table summarizes the functions available for prepared statement processing. For greater detail, see the descriptions in Section 6.4, “C API Prepared Statement Function Descriptions”.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface.html
This capability uses the MYSQL_STMT statement handler data structure returned by the mysql_stmt_init() initialization function. Then it is executed one or more times at a later time, using the statement handler returned by the initialization ... The ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-binlog-open.html
rpl: A MYSQL_RPL structure that has been initialized to indicate the replication event stream source. For a description of the structure members and how to initialize them, see Section 10.2, “C API Binary Log Data Structures”. int ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-library-init.html
int mysql_library_init(int argc, char **argv, char **groups) Description Call this function to initialize the MySQL client library before you call any other MySQL function. #include <mysql.h> #include <stdlib.h> int main(void) { if ...Note To avoid ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-data-structures.html
For example, a full-text parser plugin has initialization and deinitialization functions, and a main parsing function. A plugin library file includes descriptor information to indicate what plugins it contains. If the plugin library contains any ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-status-system-variables.html
The st_mysql_show_var structure has this definition: struct st_mysql_show_var { const char *name; char *value; enum enum_mysql_show_type type; }; The following table shows the permissible status variable type values and what the corresponding ...