mysql_stmt_errno — Returns the error number for the most recent prepared statement call
unsigned int mysql_stmt_errno(MYSQL_STMT * stmt);Returns the error code for the most recently invoked statement function that can succeed or fail.
Parameters
stmtA statement handle, which was previously allocated by mysql_stmt_init().
Return value
An error code value for the last call, if it failed. zero means no error occurred.
![[Note]](note.png) | |
|---|
Client error messages are listed in errmsg.h header file, server error messages are listed in mysqld_error.h header file of the server source distribution. |
See also
mysql_stmt_error(), mysql_stmt_sqlstate()