-
Notifications
You must be signed in to change notification settings - Fork 258
mysql_close
Georg Richter edited this page Sep 15, 2018
·
3 revisions
mysql_close - Closes a previously opened connection
#include <mysql.h>
void mysql_close(MYSQL *mysql);
Closes a previously opened connection and deallocates all memory.
- To reuse a connection handle after
mysql_close()
the handle must be initialized again by mysql_init().
MariaDB Connector/C Reference