diff options
author | Scott MacVicar <scottmac@php.net> | 2009-04-27 18:16:46 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-04-27 18:16:46 +0000 |
commit | d13c02868995d6bb6f87077b11a16587c548611d (patch) | |
tree | 62609657aa8986a0a835788eaa6592ac36fca842 /ext/sqlite3/php_sqlite3_structs.h | |
parent | 4ce599678f9d887c9ac09cfa5bcd89a2b581f34b (diff) | |
download | php-git-d13c02868995d6bb6f87077b11a16587c548611d.tar.gz |
MFH Add the ability to enable exceptions rather than warnings for sqlite3, needed for pyrus.
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index 65def8bcb3..8edebdda56 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -68,6 +68,7 @@ typedef struct _php_sqlite3_db_object { int initialised; sqlite3 *db; php_sqlite3_func *funcs; + zend_bool exception; zend_llist free_list; } php_sqlite3_db_object; |