-
Notifications
You must be signed in to change notification settings - Fork 257
mariadb_rpl_error
Georg Richter edited this page Apr 11, 2023
·
2 revisions
mariadb_rpl_error - returns the last error message for the most recent binlog function call
#include <mariadb_rpl.h>
const char * mariadb_rpl_error(MARIADB_RPL * rpl);
Returns the last error message for the most recent binlog function call that can succeed or fail. An empty string means no error occurred.
-
rpl
is a handle, which was previously allocated by mariadb_rpl_init().
- Client error codes are listed in
errmsg.h
header file, server error codes are listed inmysqld_error.h
header file of the server source distribution.
This function was added in MariaDB Connector/C version 3.3.5
MariaDB Connector/C Reference