diff options
author | Frank M. Kromann <fmk@php.net> | 2002-12-03 18:59:38 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2002-12-03 18:59:38 +0000 |
commit | 03a87edd97818b0749037a39e5dae7383afa4592 (patch) | |
tree | 757a7f7e2b2aa6241a03e3b7a39f263a1743d8ac /ext/mssql/php_mssql.h | |
parent | 5454f01e04d0698f1135685b7e427d51520d02ec (diff) | |
download | php-git-03a87edd97818b0749037a39e5dae7383afa4592.tar.gz |
MFH
# Bug #19370
# Allow stored procedures to return multiple results.
Diffstat (limited to 'ext/mssql/php_mssql.h')
-rw-r--r-- | ext/mssql/php_mssql.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mssql/php_mssql.h b/ext/mssql/php_mssql.h index e514783081..876f75db43 100644 --- a/ext/mssql/php_mssql.h +++ b/ext/mssql/php_mssql.h @@ -137,6 +137,7 @@ typedef struct mssql_result { pval **data; mssql_field *fields; mssql_link *mssql_ptr; + mssql_statement * statement; int batchsize; int lastresult; int blocks_initialized; |