summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.h
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2001-10-23 16:34:52 +0000
committerFrank M. Kromann <fmk@php.net>2001-10-23 16:34:52 +0000
commit991e30668f78696c8e47ab808996c26fef7c7402 (patch)
treea40e2c29e9f2c65ddfcbd344041319813270ced3 /ext/mssql/php_mssql.h
parentf73ee14bd9f8d2f35b3f860c6f85f0c88d2465ab (diff)
downloadphp-git-991e30668f78696c8e47ab808996c26fef7c7402.tar.gz
Patch for correct handling of DATETIME values.
The patch is implemented with a parameter in php.ini controling if datetime values are converted with the new or the old method. Thanks to Michael Bretterklieber <mbretter@jawa.at>
Diffstat (limited to 'ext/mssql/php_mssql.h')
-rw-r--r--ext/mssql/php_mssql.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/mssql/php_mssql.h b/ext/mssql/php_mssql.h
index 2d7d90d915..b892d05a83 100644
--- a/ext/mssql/php_mssql.h
+++ b/ext/mssql/php_mssql.h
@@ -114,8 +114,9 @@ ZEND_BEGIN_MODULE_GLOBALS(mssql)
long min_error_severity, min_message_severity;
long cfg_min_error_severity, cfg_min_message_severity;
long compatability_mode, connect_timeout, timeout;
- void (*get_column_content)(mssql_link *mssql_ptr,int offset,pval *result,int column_type);
+ void (*get_column_content)(mssql_link *mssql_ptr,int offset,pval *result,int column_type TSRMLS_DC);
long textsize, textlimit, batchsize;
+ long datetimeconvert;
HashTable *resource_list, *resource_plist;
ZEND_END_MODULE_GLOBALS(mssql)