mariadb_rpl_close()
Syntax
#include <mariadb_rpl.h>
void mariadb_rpl_close(MARIADB_RPL *rpl);Parameters
Parameter
Description
Notes
History
See Also
Last updated
Was this helpful?
Closes a binary log stream and releases all resources associated with the replication handle.
#include <mariadb_rpl.h>
void mariadb_rpl_close(MARIADB_RPL *rpl);rpl
A replication handle previously allocated by mariadb_rpl_init() and and connected using mariadb_rpl_open()
This function closes the replication stream and frees the MARIADB_RPL handle, but does not close the underlying database connection. To close the connection, call mysql_close() separately after mariadb_rpl_close().
Added in MariaDB Connector/C 3.1.0.
Last updated
Was this helpful?
Was this helpful?

