diff options
| author | Frank M. Kromann <fmk@php.net> | 2006-08-14 18:40:08 +0000 |
|---|---|---|
| committer | Frank M. Kromann <fmk@php.net> | 2006-08-14 18:40:08 +0000 |
| commit | 8eaa9eae52b7d5176e4bfecec5666d44a2aa8128 (patch) | |
| tree | 471ef7e0364a04ff5244d1ff8dd8bff52dcba3d0 /ext/fbsql/php_fbsql.h | |
| parent | b4da7e66723eee61c0f8fe65daace66592fb6ec8 (diff) | |
| download | php-git-8eaa9eae52b7d5176e4bfecec5666d44a2aa8128.tar.gz | |
MFH: Cleanup before reusing failed persistant connection. Better formating of timestamp and decimal values
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
| -rw-r--r-- | ext/fbsql/php_fbsql.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index 6b0b36d38c..c1fcf6eced 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -108,23 +108,23 @@ static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type, static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent); ZEND_BEGIN_MODULE_GLOBALS(fbsql) - zend_bool allowPersistent; - zend_bool generateWarnings; - zend_bool autoCommit; - long maxPersistent; - long maxLinks; - long maxConnections; - long maxResults; - long batchSize; - char *hostName; - char *databaseName; - char *databasePassword; - char *userName; - char *userPassword; - long persistentCount; - long linkCount; - long linkIndex; - + zend_bool allowPersistent; + zend_bool generateWarnings; + zend_bool autoCommit; + zend_bool showTimestampDecimals; + long maxPersistent; + long maxLinks; + long maxConnections; + long maxResults; + long batchSize; + char *hostName; + char *databaseName; + char *databasePassword; + char *userName; + char *userPassword; + long persistentCount; + long linkCount; + long linkIndex; ZEND_END_MODULE_GLOBALS(fbsql) #ifdef ZTS |
