-
Notifications
You must be signed in to change notification settings - Fork 256
mysql_stmt_sqlstate
Georg Richter edited this page Aug 31, 2018
·
2 revisions
mysql_stmt_sqlstate - Returns SQLSTATE error from previous statement operation.
#include <mysql.h>
const char * mysql_stmt_sqlstate(MYSQL_STMT * stmt);
Returns a string containing the SQLSTATE error code for the most recently invoked prepared statement function that can succeed or fail.
-
stmt
- a statement handle, which was previously allocated by mysql_stmt_init().
Returns a 5 digit error code. '00000' means no error. The values are specified by ANSI SQL and ODBC.
Please note that not all client library error codes are mapped to SQLSTATE errors. Errors which can't be mapped will returned as value HY000.
MariaDB Connector/C Reference