Search



Search Results
Displaying 821 to 830 of 1907 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-bind-param.html
bool mysql_stmt_bind_param(MYSQL_STMT *stmt, MYSQL_BIND *bind) Description mysql_stmt_bind_param() is used to bind input data for the parameter markers in the SQL statement that was passed to mysql_stmt_prepare(). The client library expects the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-bind-result.html
bool mysql_stmt_bind_result(MYSQL_STMT *stmt, MYSQL_BIND *bind) Description mysql_stmt_bind_result() is used to associate (that is, bind) output columns in the result set to data buffers and length buffers. When mysql_stmt_fetch() is called to ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-execute.html
int mysql_stmt_execute(MYSQL_STMT *stmt) Description mysql_stmt_execute() executes the prepared query associated with the statement handler. The currently bound parameter marker values are sent to server during this call, and the server replaces ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-send-long-data.html
Errors CR_INVALID_BUFFER_USE The parameter does not have a string or binary type. 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 ...
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/extending-mysql/8.4/en/plugin-types.html
Any attempt to use a table for which a plugin is not available results in an error, although DROP TABLE is still possible. For example, the plugin can see what statement produced a result set or was logged, the number of rows in a result, who the ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-client-side.html
Error Code Meaning CR_OK Success CR_OK_HANDSHAKE_COMPLETE Success, client done CR_ERROR Error CR_OK_HANDSHAKE_COMPLETE indicates that the client has done its part successfully and has read the last packet. Declare the client-side plugin descriptor ...
https://dev.mysql.com/doc/relnotes/mysql-cluster/8.4/en/news-8-4-3.html
(Bug #36694848) Bugs Fixed NDB Cluster APIs: Using NdbRecord and OO_SETVALUE from the NDB API to write the value of a Varchar, Varbinary, Longvarchar, or Longvarbinary column failed with error 829. (Bug #36724336) Issues arose when an attempt was ...
https://dev.mysql.com/doc/relnotes/mysql-cluster-manager/8.4/en/news-8-4-4.html
(Bug #37326544) Bugs Fixed Agent: mcmd sometimes failed to load its information XML files when they are malformed, causing errors in its operations. With this fix, proper error handling is put in place for loading the files, in order to avoid ...
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). With this fix, no error or warning is returned in the case. (Bug #23045642) Collection.count() returned a wrong error ...
Displaying 821 to 830 of 1907 total results