Search



Search Results
Displaying 1231 to 1240 of 1278 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-basic-function-reference.html
The following table summarizes the functions available in the C API basic interface. For greater detail, see the descriptions in Section 5.4, “C API Basic Function Descriptions”.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-interface-usage.html
The value assigned to the variable is immaterial; what matters is that the variable exist. The following simple example program demonstrates the binary log C API functions. Program notes: mysql is assumed to be a valid connection handler. The ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-function-reference.html
The following table summarizes all functions available for the MySQL C API.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
This section describes prepared-statement support in the C API for stored procedures executed using CALL statements: Stored procedures executed using prepared CALL statements can be used in the following ways: A stored procedure can produce any ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-running-clients.html
A shared library might exist under several names, using symlinks to provide the alternate names. If, after an upgrade, you experience problems with compiled client programs, such as Commands out of sync or unexpected core dumps, the programs were ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-change-user.html
bool mysql_change_user(MYSQL *mysql, const char *user, const char *password, const char *db) Description Changes the user and causes the database specified by db to become the default (current) database on the connection specified by mysql. In ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-errno.html
For example, the mysql client program displays errors using the following format, where 1146 is the mysql_errno() value and '42S02' is the corresponding mysql_sqlstate() value: $> SELECT * FROM no_such_table; ERROR 1146 (42S02): Table ... unsigned ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-server-version.html
This function is useful in client programs for determining whether some version-specific server capability exists. unsigned long mysql_get_server_version(MYSQL *mysql) Description Returns an integer that represents the MySQL server version. The ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-load-plugin.html
For explicit client plugin loading, the mysql_load_plugin() and mysql_load_plugin_v() C API functions use the LIBMYSQL_PLUGIN_DIR value if it exists and the --plugin-dir option was not given. struct st_mysql_client_plugin * mysql_load_plugin(MYSQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-next-result.html
mysql_next_result() reads the next statement result and returns a status to indicate whether more results exist. int mysql_next_result(MYSQL *mysql) Description Note mysql_next_result() is a synchronous function. Its asynchronous counterpart is ...
Displaying 1231 to 1240 of 1278 total results