Documentation Home
MySQL 9.4 C API Developer Guide
Download this Manual
PDF (US Ltr) - 1.4Mb
PDF (A4) - 1.4Mb


5.4.48 mysql_list_processes()

MYSQL_RES *mysql_list_processes(MYSQL *mysql)

Description

Note

mysql_list_processes() is deprecated and is subject to removal in a future version of MySQL. Instead, usemysql_real_query() ormysql_query() to execute aSHOW PROCESSLIST statement.

Returns a result set describing the current server threads. This is the same kind of information as that reported bymysqladmin processlist or aSHOW PROCESSLIST query.

You must free the result set withmysql_free_result().

Return Values

AMYSQL_RES result set for success.NULL if an error occurred.

Errors