mysql_stmt_sqlstate — returns SQLSTATE error from previous statement operation

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. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC.

Parameters

stmt

A statement handle, which was previously allocated by mysql_stmt_init().

Return value

Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error.

[Note]

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.

See also

mysql_errno(), mysql_error()