summaryrefslogtreecommitdiff
path: root/ext/interbase/php_interbase.h
diff options
context:
space:
mode:
authorDaniela Mariaschi <daniela@php.net>2003-06-14 16:38:10 +0000
committerDaniela Mariaschi <daniela@php.net>2003-06-14 16:38:10 +0000
commite8e4db8581f574daca647e3d286795ea07951e30 (patch)
treec29179f89ee883ad297db50a5df17e27dae1bffc /ext/interbase/php_interbase.h
parent09eb38ec10d8393e583565ce7c193bf79b4491a8 (diff)
downloadphp-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.h26
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