Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-fields.html
MYSQL_FIELD * mysql_fetch_fields(MYSQL_RES *result) Description Returns an array of all MYSQL_FIELD structures for a result set. Each structure provides the field definition for one column of the result set. For metadata-optional connections, this ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-field-seek.html
MYSQL_FIELD_OFFSET mysql_field_seek(MYSQL_RES *result, MYSQL_FIELD_OFFSET offset) Description Sets the field cursor to the given offset. The next call to mysql_fetch_field() retrieves the field definition of the column associated with that offset.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-field-tell.html
MYSQL_FIELD_OFFSET mysql_field_tell(MYSQL_RES *result) Description Returns the position of the field cursor used for the last mysql_fetch_field().
https://dev.mysql.com/doc/c-api/8.4/en/mysql-free-result-nonblocking.html
enum net_async_status mysql_free_result_nonblocking(MYSQL_RES *result) Description Note mysql_free_result_nonblocking() is an asynchronous function. It is the counterpart of the mysql_free_result() synchronous function, for use by applications that ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-free-result.html
void mysql_free_result(MYSQL_RES *result) Description Note mysql_free_result() is a synchronous function. Its asynchronous counterpart is mysql_free_result_nonblocking(), for use by applications that require asynchronous communication with the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-free-ssl-session-data.html
bool mysql_free_ssl_session_data(MYSQL *, void *data) Description mysql_free_ssl_session_data() disposes of a session data handle that was obtained previously by calling mysql_get_ssl_session_data(). Never call this function for any session that is ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-client-info.html
const char * mysql_get_client_info(void) Description Returns a string that represents the MySQL client library version (for example, "8.4.6"). The function value is the version of MySQL that provides the client library. For more information, see ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-client-version.html
unsigned long mysql_get_client_version(void) Description Returns an integer that represents the MySQL client library version. The value has the format XXYYZZ, where XX is the major version, YY is the release level (or minor version), and ZZ is the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-host-info.html
const char * mysql_get_host_info(MYSQL *mysql) Description Returns a string describing the type of connection in use, including the server host name. Return Values A character string representing the server host name and the connection type.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-proto-info.html
unsigned int mysql_get_proto_info(MYSQL *mysql) Description Returns the protocol version used by current connection. Return Values An unsigned integer representing the protocol version used by the current connection.