mysql_thread_id - mariadb-corporation/mariadb-connector-c GitHub Wiki

Name

mysql_thread_id - Returns id of the current connection

Synopsis

#include <mysql.h>

unsigned long mysql_thread_id(MYSQL * mysql);

Description

The mysql_thread_id() function returns the thread id for the current connection.

Parameter

Notes

  • 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.

Return value

Returns the thread id of the current connection.

See also

⚠️ **GitHub.com Fallback** ⚠️