-
Notifications
You must be signed in to change notification settings - Fork 259
mysql_thread_id
Georg Richter edited this page Aug 18, 2018
·
1 revision
mysql_thread_id - Returns id of the current connection
#include <mysql.h>
unsigned long mysql_thread_id(MYSQL * mysql);
The mysql_thread_id() function returns the thread id for the current connection.
-
mysql
- a mysql handle, which was previously allocated by mysql_init() and connected by mysql_real_connect().
- The current connection can be killed with mysql_kill().
- If reconnect option is enabled the thread id might change if the client reconnects to the server.
Returns the thread id of the current connection.
MariaDB Connector/C Reference