summaryrefslogtreecommitdiff
path: root/odb/oracle/auto-descriptor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/auto-descriptor.cxx')
-rw-r--r--odb/oracle/auto-descriptor.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/odb/oracle/auto-descriptor.cxx b/odb/oracle/auto-descriptor.cxx
deleted file mode 100644
index fa83086..0000000
--- a/odb/oracle/auto-descriptor.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : odb/oracle/auto-descriptor.cxx
-// license : ODB NCUEL; see accompanying LICENSE file
-
-#include <oci.h>
-
-#include <odb/oracle/auto-descriptor.hxx>
-
-namespace odb
-{
- namespace oracle
- {
- static const ub4 oci_descriptor_types[] =
- {
- OCI_DTYPE_PARAM,
- OCI_DTYPE_LOB,
- OCI_DTYPE_TIMESTAMP,
- OCI_DTYPE_INTERVAL_YM,
- OCI_DTYPE_INTERVAL_DS
- };
-
- void
- oci_descriptor_free (void* d, descriptor_type type)
- {
- OCIDescriptorFree (d, oci_descriptor_types[type]);
- }
- }
-}