diff options
author | Derick Rethans <derick@php.net> | 2003-04-11 09:53:01 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-04-11 09:53:01 +0000 |
commit | a802e0d6b3cfe6ff2a1c38a19d0b973d097fbc37 (patch) | |
tree | 03609cc2eb5655fb573ac1ec53fb553499253670 /ext/mysql/php_mysql.c | |
parent | e06fdaae8b27e38b6d6eb54652f1b7c3904f3d98 (diff) | |
download | php-git-a802e0d6b3cfe6ff2a1c38a19d0b973d097fbc37.tar.gz |
- Fixed protos
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 e0f94d2a5d..f2bd945493 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) { |