diff options
author | Daniela Mariaschi <daniela@php.net> | 2003-06-14 16:38:10 +0000 |
---|---|---|
committer | Daniela Mariaschi <daniela@php.net> | 2003-06-14 16:38:10 +0000 |
commit | e8e4db8581f574daca647e3d286795ea07951e30 (patch) | |
tree | c29179f89ee883ad297db50a5df17e27dae1bffc /ext/interbase/php_interbase.h | |
parent | 09eb38ec10d8393e583565ce7c193bf79b4491a8 (diff) | |
download | php-git-e8e4db8581f574daca647e3d286795ea07951e30.tar.gz |
Added IBASE_REC_VERSION/IBASE_REC_NO_VERSION transaction constants
required from bugs #8797 #23887
(added IBASE_WRITE, IBASE_WAIT, IBASE_CONCURRENCY just for clarity)
Diffstat (limited to 'ext/interbase/php_interbase.h')
-rw-r--r-- | ext/interbase/php_interbase.h | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/ext/interbase/php_interbase.h b/ext/interbase/php_interbase.h index 06e7e78ca9..fb47daae59 100644 --- a/ext/interbase/php_interbase.h +++ b/ext/interbase/php_interbase.h @@ -159,16 +159,22 @@ typedef struct _php_ibase_varchar { /* extern ibase_module php_ibase_module; */ enum php_interbase_option { - PHP_IBASE_DEFAULT = 0, - PHP_IBASE_TEXT = 1, - PHP_IBASE_UNIXTIME = 2, - PHP_IBASE_READ = 4, - PHP_IBASE_COMMITTED = 8, - PHP_IBASE_CONSISTENCY = 16, - PHP_IBASE_NOWAIT = 32, - PHP_IBASE_TIMESTAMP = 64, - PHP_IBASE_DATE = 128, - PHP_IBASE_TIME = 256 + PHP_IBASE_DEFAULT = 0, + PHP_IBASE_TEXT = 1, + PHP_IBASE_UNIXTIME = 2, + PHP_IBASE_TIMESTAMP = 4, + PHP_IBASE_DATE = 8, + PHP_IBASE_TIME = 16, + /* transactions */ + PHP_IBASE_WRITE = 2, + PHP_IBASE_READ = 4, + PHP_IBASE_COMMITTED = 8, + PHP_IBASE_CONSISTENCY = 16, + PHP_IBASE_CONCURRENCY = 32, + PHP_IBASE_REC_VERSION = 64, + PHP_IBASE_REC_NO_VERSION = 128, + PHP_IBASE_NOWAIT = 256, + PHP_IBASE_WAIT = 512 }; #ifdef ZTS |