mysql_stat
mysql_stat returns a status string from the MariaDB server covering uptime, active threads, query count, open tables, and queries per second.
Last updated
Was this helpful?
mysql_stat returns a status string from the MariaDB server covering uptime, active threads, query count, open tables, and queries per second.
char * mysql_stat(MYSQL * mysql);mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
mysql_stat() returns a string with the current server status for uptime, threads, queries, open tables, flush tables and queries per second.
For a complete list of other status variables, you have to use the SHOW STATUS SQL command.
Last updated
Was this helpful?
Was this helpful?

