unsigned int mysql_errno(MYSQL *mysql)
20.4.11.1 Description
For the connection specified by mysql
, mysql_errno()
returns
the error code for the most recently invoked API function that can succeed
or fail. A return value of zero means that no error occurred. Client error
message numbers are listed in the MySQL `errmsg.h' header file.
Server error message numbers are listed in `mysqld_error.h'
20.4.11.2 Return values:
An error code value. Zero if no error occurred.
20.4.11.3 Errors
None.