From 4230bdd3ed6e6d86025a2af26ead33a814c65a2f Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Fri, 9 Mar 2001 23:37:56 +0000 Subject: Adding a new function mssql_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. --- ext/mssql/php_mssql.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/mssql/php_mssql.h') diff --git a/ext/mssql/php_mssql.h b/ext/mssql/php_mssql.h index c9849af20d..16da48abe4 100644 --- a/ext/mssql/php_mssql.h +++ b/ext/mssql/php_mssql.h @@ -77,6 +77,7 @@ PHP_FUNCTION(mssql_field_type); PHP_FUNCTION(mssql_data_seek); PHP_FUNCTION(mssql_field_seek); PHP_FUNCTION(mssql_result); +PHP_FUNCTION(mssql_next_result); PHP_FUNCTION(mssql_min_error_severity); PHP_FUNCTION(mssql_min_message_severity); @@ -116,6 +117,7 @@ typedef struct mssql_result { mssql_link *mssql_ptr; int batchsize; int lastresult; + int blocks_initialized; int cur_row,cur_field; int num_rows,num_fields; } mssql_result; -- cgit v1.2.1