Search Results
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-optional-metadata.html
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 set metadata that provides information about the result set data. Metadata is contained in the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-plugin-function-reference.html
The following table summarizes the functions available for the client-side plugin API. For greater detail, see the descriptions in Section 9.2, “C API Plugin Function Descriptions”. Table 9.1 C API Plugin Functions Name Description ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-plugin-interface.html
This section describes functions used for the client-side plugin API. For a description of the st_mysql_client_plugin structure used by these functions, see Client Plugin Descriptors. It is unlikely that a client program needs to call the functions ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-function-reference.html
The following table summarizes the functions available for prepared statement processing. For greater detail, see the descriptions in Section 6.4, “C API Prepared Statement Function Descriptions”.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-ssl-session-reuse.html
As of MySQL 8.0.29, the server supports SSL session reuse by default, but only within a configurable timeout period after a user enables the feature. For a description of server-side and client-side operations, see Reusing SSL Sessions. This ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-thread-function-descriptions.html
To create a threaded client, use the functions described in the following sections.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-thread-function-reference.html
The following table summarizes the functions available for the thread control within the client. For greater detail, see the descriptions in Section 8.2, “C API Threaded Function Descriptions”. Table 8.1 C API Thread Functions Name Description ...
https://dev.mysql.com/doc/c-api/8.4/en/index.html
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 enables C programs to access database contents. The C API code is distributed with MySQL and implemented in the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-affected-rows.html
uint64_t mysql_affected_rows(MYSQL *mysql) Description mysql_affected_rows() may be called immediately after executing a statement with mysql_real_query() or mysql_query(). It returns the number of rows changed, deleted, or inserted by the last ...