Search



Search Results
Displaying 2371 to 2380 of 3564 total results
https://dev.mysql.com/doc/c-api/8.4/en/index.html
For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Abstract This is the MySQL 8.4 C API Developer Guide. The C API provides low-level access to the MySQL client/server protocol and ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-bind-param.html
The mysql_reset_connection() and mysql_change_user() functions also clear any currently defined attributes. bool mysql_bind_param(MYSQL *mysql, unsigned n_params, MYSQL_BIND *bind, const char **name) Description mysql_bind_param(), available as of ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-connect.html
MYSQL * mysql_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd) Description This function is deprecated.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-dump-debug-info.html
int mysql_dump_debug_info(MYSQL *mysql) Description Instructs the server to write debugging information to the error log. CR_SERVER_LOST The connection to the server was lost during the query.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-insert-id.html
Errors ER_AUTO_INCREMENT_CONFLICT A user-specified AUTO_INCREMENT value in a multi INSERT statement falls within the range between the current AUTO_INCREMENT value and the sum of the current and number of rows affected values. uint64_t ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect-nonblocking.html
enum net_async_status mysql_real_connect_nonblocking(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 ...It is the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-refresh.html
int mysql_refresh(MYSQL *mysql, unsigned int options) Description Note mysql_refresh() is deprecated and is subject to removal in a future version of MySQL. This function flushes tables or caches, or resets replication server information. The ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reload.html
int mysql_reload(MYSQL *mysql) Description Asks the MySQL server to reload the grant tables. Use mysql_real_query() or mysql_query() to issue an SQL FLUSH PRIVILEGES statement instead. CR_SERVER_LOST The connection to the server was lost during the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reset-connection.html
mysql_reset_connection() has effects similar to mysql_change_user() or an auto-reconnect except that the connection is not closed and reopened, and reauthentication is not done. int mysql_reset_connection(MYSQL *mysql) Description Resets the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-select-db.html
mysql_select_db() fails unless the connected user can be authenticated as having permission to use the database or some object within it. int mysql_select_db(MYSQL *mysql, const char *db) Description Causes the database specified by db to become ...
Displaying 2371 to 2380 of 3564 total results