summaryrefslogtreecommitdiff
path: root/ext/odbc/php_odbc.h
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2001-03-09 23:44:55 +0000
committerFrank M. Kromann <fmk@php.net>2001-03-09 23:44:55 +0000
commitf98710c8700685acc8599443f6a9da5ab440d00a (patch)
tree025863644ee9622ccce5aaa7c821e5f3c5702839 /ext/odbc/php_odbc.h
parent4230bdd3ed6e6d86025a2af26ead33a814c65a2f (diff)
downloadphp-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.h1
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);