diff options
author | Zak Greant <zak@php.net> | 2002-03-24 10:57:40 +0000 |
---|---|---|
committer | Zak Greant <zak@php.net> | 2002-03-24 10:57:40 +0000 |
commit | 28de0b545ef5aa7ba370b88c7cc44453235bce24 (patch) | |
tree | 73f3252267ddf6b9e91a09bdb4b4a9c3c56ed248 /ext/mysql/php_mysql.h | |
parent | 66e510f60a55ace0594ac8f0a1d0cca509bea3fa (diff) | |
download | php-git-28de0b545ef5aa7ba370b88c7cc44453235bce24.tar.gz |
(PHP mysql_list_processes) Returns a pointer to a result set containing
information on the processes running in the
MySQL server.
(PHP mysql_stat) Returns a string containing information on the status
of the MySQL server.
@- Added two new functions: mysql_list_processes and mysql_stat (Georg)
@- mysql_list_processes() fetches information on the processes running on
@ the MySQL server.
@- mysql_stat() returns status information for a MySQL server.
# Committed for Georg by Zak
Diffstat (limited to 'ext/mysql/php_mysql.h')
-rw-r--r-- | ext/mysql/php_mysql.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.h b/ext/mysql/php_mysql.h index 5bd73ac9e2..f373653db3 100644 --- a/ext/mysql/php_mysql.h +++ b/ext/mysql/php_mysql.h @@ -58,6 +58,7 @@ PHP_FUNCTION(mysql_db_query); PHP_FUNCTION(mysql_list_dbs); PHP_FUNCTION(mysql_list_tables); PHP_FUNCTION(mysql_list_fields); +PHP_FUNCTION(mysql_list_processes); PHP_FUNCTION(mysql_error); PHP_FUNCTION(mysql_errno); PHP_FUNCTION(mysql_affected_rows); @@ -84,6 +85,7 @@ PHP_FUNCTION(mysql_get_client_info); PHP_FUNCTION(mysql_get_host_info); PHP_FUNCTION(mysql_get_proto_info); PHP_FUNCTION(mysql_get_server_info); +PHP_FUNCTION(mysql_stat); ZEND_BEGIN_MODULE_GLOBALS(mysql) long default_link; |