Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-prepare.html
int mysql_stmt_prepare(MYSQL_STMT *stmt, const char *stmt_str, unsigned long length) Description Given the statement handler returned by mysql_stmt_init(), prepares the SQL statement pointed to by the string stmt_str and returns a status value. You ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-row-seek.html
MYSQL_ROW_OFFSET mysql_stmt_row_seek(MYSQL_STMT *stmt, MYSQL_ROW_OFFSET offset) Description Sets the row cursor to an arbitrary row in a statement result set. The offset value is a row offset that should be a value returned from ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-send-long-data.html
bool mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int parameter_number, const char *data, unsigned long length) Description Enables an application to send parameter data to the server in pieces (or “chunks”). It can be called multiple ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-store-result.html
int mysql_stmt_store_result(MYSQL_STMT *stmt) Description Result sets are produced by calling mysql_stmt_execute() to executed prepared statements for SQL statements such as SELECT, SHOW, DESCRIBE, and EXPLAIN. By default, result sets for ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-thread-id.html
unsigned long mysql_thread_id(MYSQL *mysql) Description Returns the thread ID of the current connection. This value can be used as an argument to mysql_kill() to kill the thread. If the connection is lost and you reconnect with mysql_ping(), the ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-loadable-function.html
The MySQL interface for loadable functions provides the following features and capabilities: Functions can return string, integer, or real values and can accept arguments of those same types. You can define simple functions that operate on a single ...
https://dev.mysql.com/doc/relnotes/mysql-enterprise-backup/8.4/en/news-8-4-6.html
Note These release notes were created with the assistance of MySQL HeatWave GenAI. MySQL Enterprise Backup 8.4.6 is the latest release for the MySQL Enterprise Backup 8.4 LTS series. Bugs Fixed When a TTS image backup taken with full-locking was ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-16.html
(Bug #21921956) Because the SHOW PROCESSLIST statement might cause the server to fail sometimes, Connector/J now avoids using the statement, but queries the performance scheme instead for the information it needs. Version 8.0.16 is the latest ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-17.html
(Bug #29446059, Bug #94442) Enabling logSlowQueries resulted in many unnecessary calls of LogUtils.findCallingClassAndMethod(). Version 8.0.17 is the latest General Availability release of the 8.0 series of MySQL Connector/J. It is suitable for use ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-19.html
Version 8.0.19 is the latest General Availability release of the 8.0 series of MySQL Connector/J. It is suitable for use with MySQL Server versions 8.0, 5.7, and 5.6. It supports the Java Database Connectivity (JDBC) 4.2 API, and implements the X ...