Search Results
Displaying 881 to 890
of 894 total results
- « Previous
- 87
- 88
- 89
- 90
- Next »
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-fetch.html
(This example expects to retrieve the two rows inserted by the example shown in Section 6.4.11, “mysql_stmt_execute()”.) The mysql variable is assumed to be a valid connection handler. int mysql_stmt_fetch(MYSQL_STMT *stmt) Description ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-field-count.html
This value is zero for statements such as INSERT or DELETE that do not produce result sets. unsigned int mysql_stmt_field_count(MYSQL_STMT *stmt) Description Returns the number of columns for the most recent statement for the statement handler.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-num-rows.html
For statements such as INSERT, UPDATE, or DELETE, the number of affected rows can be obtained with mysql_stmt_affected_rows(). uint64_t mysql_stmt_num_rows(MYSQL_STMT *stmt) Description Returns the number of rows in the result set. The use of ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-prepare.html
For example, they are permitted in the VALUES() list of an INSERT statement (to specify column values for a row), or in a comparison with a column in a WHERE clause to specify a comparison value. int mysql_stmt_prepare(MYSQL_STMT *stmt, const char ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-store-result.html
mysql_store_result() returns NULL if the statement did not return a result set (for example, if it was an INSERT statement), or an error occurred and reading of the result set failed. MYSQL_RES * mysql_store_result(MYSQL *mysql) Description Note ...
https://dev.mysql.com/doc/relnotes/mysql-cluster/8.4/en/dynxml-auto-changelog-difflist-mysqld-8.4.7-ndb-8.4.7.html
(Bug #38260769) When running CREATE or INSERT statements on a NDB Binlog server with sql_log_bin = 0, replication would fail due to a table not existing. Note These release notes were created with the assistance of MySQL HeatWave GenAI.
https://dev.mysql.com/doc/relnotes/mysql-cluster/8.4/en/news-8-4-7.html
(Bug #38260769) When running CREATE or INSERT statements on a NDB Binlog server with sql_log_bin = 0, replication would fail due to a table not existing. MySQL NDB Cluster 8.4.7 is a new LTS release of NDB 8.4, based on MySQL Server 8.4 and ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-13.html
(Bug #27658489, Bug #89948) Rewriting prepared INSERT statements in a multiquery batch failed with a BatchUpdateException when the statements did not contain place holders. Version 8.0.13 is the latest General Availability release of the 8.0 series ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-14.html
(Bug #28606708) X DevAPI: Adding an empty document with executeAsync() resulted in an ERROR 5013 (Missing row data for Insert). Version 8.0.14 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-23.html
However, when Connector/J inserted a java.sql.TIME into the server as a MySQL TIME value, the fractional seconds were always truncated. Version 8.0.23 is the latest General Availability release of the 8.0 series of MySQL Connector/J. It is suitable ...
Displaying 881 to 890
of 894 total results
- « Previous
- 87
- 88
- 89
- 90
- Next »