https://dev.mysql.com/mysql-result-metadata.html
It can be useful for metadata-optional connections when the client does not know in advance whether particular result sets have metadata. enum enum_resultset_metadata mysql_result_metadata(MYSQL_RES *result) mysql_result_metadata() returns a value ...
https://dev.mysql.com/mysql-server-end.html
Note To avoid memory leaks after the application is done using the library (for example, after closing the connection to the server), be sure to call mysql_server_end() (or mysql_library_end()) explicitly. void mysql_server_end(void) This function ...
https://dev.mysql.com/mysql-server-init.html
Note To avoid memory leaks after the application is done using the library (for example, after closing the connection to the server), be sure to call mysql_server_end() (or mysql_library_end()) explicitly. int mysql_server_init(int argc, char ...
https://dev.mysql.com/mysql-set-local-infile-handler.html
The arguments are the connection handler, a set of pointers to callback functions, and a pointer to a data area that the callbacks can use to share information. void mysql_set_local_infile_handler(MYSQL *mysql, int (*local_infile_init)(void **, ...
https://dev.mysql.com/mysql-shell-tutorial-javascript-collections-operations.html
Collections returned by the server you are currently connected to appear between brackets. In MySQL Shell, you can create new collections, get a list of the existing collections in a schema, and remove an existing collection from a schema.
https://dev.mysql.com/mysql-shell-tutorial-python-collections-operations.html
Collections returned by the server you are currently connected to appear between brackets. In MySQL Shell, you can create new collections, get a list of the existing collections in a schema, and remove an existing collection from a schema.
https://dev.mysql.com/mysql-shell-tutorial-python.html
MySQL Shell includes X DevAPI, implemented in both JavaScript and Python, which enables you to connect to the MySQL server instance using X Protocol and use the server as a Document Store. This quick-start guide provides instructions to begin ...
https://dev.mysql.com/mysql-shell-userguide.html
The X DevAPI enables you to work with both relational and document data when MySQL Shell is connected to a MySQL server using the X Protocol. MySQL Shell is an advanced client and code editor for MySQL Server. In addition to the provided SQL ...
https://dev.mysql.com/mysql-sqlstate.html
If you call mysql_sqlstate() after mysql_real_connect() fails, mysql_sqlstate() might not return a useful value. For example, this happens if a host is blocked by the server and the connection is closed without any SQLSTATE value being sent to the ... const char *mysql_sqlstate(MYSQL *mysql) Returns a null-terminated string containing the SQLSTATE error code for the most recently executed SQL ...
https://dev.mysql.com/mysql-stat.html
CR_SERVER_LOST The connection to the server was lost during the query. const char *mysql_stat(MYSQL *mysql) Returns a character string containing information similar to that provided by the mysqladmin status command. This includes uptime in seconds ...