diff options
author | Georg Richter <georg@php.net> | 2002-11-11 12:54:06 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2002-11-11 12:54:06 +0000 |
commit | f328f3ea515abd15be051e75abd7d20a909132d9 (patch) | |
tree | 36add661faee4e990e62d3f04613a1b4b146f0c9 /ext/mysql/php_mysql.h | |
parent | c4e57b182e38638af436c32f7674c4ef31428d2d (diff) | |
download | php-git-f328f3ea515abd15be051e75abd7d20a909132d9.tar.gz |
Added new functionality:
Warnings for table/index scans
Warnings for SQL-Errors
Warnings for non free result sets
It can be activated via ini.setting "mysql.trace_mode"
Diffstat (limited to 'ext/mysql/php_mysql.h')
-rw-r--r-- | ext/mysql/php_mysql.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.h b/ext/mysql/php_mysql.h index 053ece881c..5fc850f5cd 100644 --- a/ext/mysql/php_mysql.h +++ b/ext/mysql/php_mysql.h @@ -103,6 +103,8 @@ ZEND_BEGIN_MODULE_GLOBALS(mysql) char *connect_error; long connect_errno; long connect_timeout; + long result_allocated; + long trace_mode; ZEND_END_MODULE_GLOBALS(mysql) #ifdef ZTS |