diff options
author | Frank M. Kromann <fmk@php.net> | 2001-03-09 23:44:55 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2001-03-09 23:44:55 +0000 |
commit | f98710c8700685acc8599443f6a9da5ab440d00a (patch) | |
tree | 025863644ee9622ccce5aaa7c821e5f3c5702839 /ext/odbc/php_odbc.h | |
parent | 4230bdd3ed6e6d86025a2af26ead33a814c65a2f (diff) | |
download | php-git-f98710c8700685acc8599443f6a9da5ab440d00a.tar.gz |
Adding a new function odbc_next_result() allowing the query to return more than one result.
This can be done with a stored procedure or by sending more than one select to the server.
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 7cf7be6897..b9052685ff 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -207,6 +207,7 @@ PHP_FUNCTION(odbc_field_name); PHP_FUNCTION(odbc_field_type); PHP_FUNCTION(odbc_field_num); PHP_FUNCTION(odbc_free_result); +PHP_FUNCTION(odbc_next_result); PHP_FUNCTION(odbc_num_fields); PHP_FUNCTION(odbc_num_rows); PHP_FUNCTION(odbc_prepare); |