aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/oracle-fwd.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-07 15:02:14 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-08 14:46:33 +0200
commit655fc5c0827d56b6eaa86f80c904d9a607530fcb (patch)
treecf4679282bb15dd15c73ff429e0b20428eb58650 /odb/oracle/oracle-fwd.hxx
parent60d4d13a85130ccdc3b232e420bc3c18683846b9 (diff)
Implement support for Oracle temporal types
Diffstat (limited to 'odb/oracle/oracle-fwd.hxx')
-rw-r--r--odb/oracle/oracle-fwd.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/odb/oracle/oracle-fwd.hxx b/odb/oracle/oracle-fwd.hxx
index 813414c..dee5736 100644
--- a/odb/oracle/oracle-fwd.hxx
+++ b/odb/oracle/oracle-fwd.hxx
@@ -12,6 +12,9 @@
// allows us to avoid having to include oci.h in public headers.
//
typedef signed int sword;
+
+typedef unsigned char ub1;
+typedef signed char sb1;
typedef signed short sb2;
typedef unsigned short ub2;
typedef signed int sb4;
@@ -26,6 +29,8 @@ typedef struct OCITrans OCITrans;
typedef struct OCIParam OCIParam;
typedef struct OCILobLocator OCILobLocator;
+typedef struct OCIDateTime OCIDateTime;
+typedef struct OCIInterval OCIInterval;
#include <odb/post.hxx>