Search



Search Results
Displaying 1811 to 1820 of 1907 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-encrypted-connections.html
The call fails if an encrypted connection cannot be obtained; exit with an error. This section describes how C applications use the C API capabilities for encrypted connections. By default, MySQL programs attempt to connect using encryption if the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-optional-metadata.html
For connections that are not metadata-optional, setting resultset_metadata to NONE produces an error. When a client executes a statement that produces a result set, MySQL makes available the data the result set contains, and by default also result ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-threaded-clients.html
If undefined-reference errors occur when linking a threaded program against the MySQL client library, the most likely cause is that you did not include the thread libraries on the link/compile command. This section provides guidance for writing ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-binlog-close.html
void mysql_binlog_close(MYSQL *mysql, MYSQL_RPL *rpl) Description Close a replication event stream. After calling mysql_binlog_close(), this structure should not be used further without reinitializing it and calling mysql_binlog_open() again.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-character-set-name.html
const char * mysql_character_set_name(MYSQL *mysql) Description Returns the default character set name for the current connection.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-close.html
mysql_close() also deallocates the connection handler pointed to by mysql if the handler was allocated automatically by mysql_init() or mysql_connect().
https://dev.mysql.com/doc/c-api/8.4/en/mysql-data-seek.html
void mysql_data_seek(MYSQL_RES *result, uint64_t offset) Description Seeks to an arbitrary row in a query result set. This function requires that the result set structure contains the entire result of the query, so mysql_data_seek() may be used ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-debug.html
void mysql_debug(const char *debug) Description Does a DBUG_PUSH with the given string. To use this function, you must compile the client library to support debugging. Example The call shown here causes the client library to generate a trace file ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-field-direct.html
MYSQL_FIELD * mysql_fetch_field_direct(MYSQL_RES *result, unsigned int fieldnr) Description Given a field number fieldnr for a column within a result set, returns that column's field definition as a MYSQL_FIELD structure. Use this function to ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-field.html
MYSQL_FIELD * mysql_fetch_field(MYSQL_RES *result) Description Returns the definition of one column of a result set as a MYSQL_FIELD structure. Call this function repeatedly to retrieve information about all columns in the result set. For ...
Displaying 1811 to 1820 of 1907 total results