-
Notifications
You must be signed in to change notification settings - Fork 256
mysql_get_timeout_value
Georg Richter edited this page Jun 14, 2023
·
3 revisions
mysql_get_timeout_value - Returns the timeout value for asynchronous operations in seconds.
#include <mysql.h>
unsigned int mysql_get_timeout_value(const MYSQL *mysql);
Returns the timeout value for asynchronous operations in seconds.
-
mysql
- a connection identifier, which was previously allocated by mysql_init() and connected by mysql_real_connect().
This function is deprecated. Please use mariadb_get_infov() with option MARIADB_CONNECTION_ASYNC_TIMEOUT
instead.
Time out value in seconds.
MariaDB Connector/C Reference