diff options
author | Derick Rethans <derick@php.net> | 2003-04-11 09:54:39 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-04-11 09:54:39 +0000 |
commit | 3cba4261faae19d79595f7c3b1b14ae9e255299d (patch) | |
tree | 00c385e1a3c1ec37c9ec50070eeebfb07a15481c /ext/mysql/php_mysql.c | |
parent | 39c03bc2c5035b4bbcc884f4835061416baa2125 (diff) | |
download | php-git-3cba4261faae19d79595f7c3b1b14ae9e255299d.tar.gz |
- MFH: proto fix
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 75376f7c43..b1ff30afb9 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -1297,7 +1297,7 @@ static void php_mysql_do_query(INTERNAL_FUNCTION_PARAMETERS, int use_store) } /* }}} */ -/* {{{ proto resource mysql_query(string query [, int link_identifier] [, int result_mode]) +/* {{{ proto resource mysql_query(string query [, int link_identifier]) Sends an SQL query to MySQL */ PHP_FUNCTION(mysql_query) { @@ -1306,7 +1306,7 @@ PHP_FUNCTION(mysql_query) /* }}} */ -/* {{{ proto resource mysql_unbuffered_query(string query [, int link_identifier] [, int result_mode]) +/* {{{ proto resource mysql_unbuffered_query(string query [, int link_identifier]) Sends an SQL query to MySQL, without fetching and buffering the result rows */ PHP_FUNCTION(mysql_unbuffered_query) { |