-
Notifications
You must be signed in to change notification settings - Fork 264
mysql_kill
Georg Richter edited this page Aug 16, 2018
·
1 revision
mysql_kill - Kills a connection
#include <mysql.h>
int mysql_kill(MYSQL * mysql,
unsigned long);
This function is used to ask the server to kill a MariaDB thread specified by the processid parameter. This value must be retrieved by [show-processlist()](SHOW PROCESSLIST]]. If trying to kill the own connection mysql_thread_id() should be used.
-
mysql
- a connection identifier, which was previously allocated by mysql_init() and connected by mysql_real_connect(). Returns 0 on success, otherwise nonzero. -
long
- process id
- To stop a running command without killing the connection use
KILL QUERY
. - The
mysql_kill()
function only kills a connection, it doesn't free any memory - this must be done explicitly by calling mysql_close().
Returns zero on success, non zero on error.
MariaDB Connector/C Reference