aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/traits.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-03 10:07:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-03 10:07:14 +0200
commita42af2b9be73144b6cf22b74fd095c45ec9fb7fa (patch)
tree0b919b4c886694ac520448d4e5dec03572b32300 /odb/oracle/traits.hxx
parent951f324ae01c4d8f9cbe1edb19b5f1c370f825a2 (diff)
Use correct image type for RAW type traits
Diffstat (limited to 'odb/oracle/traits.hxx')
-rw-r--r--odb/oracle/traits.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/oracle/traits.hxx b/odb/oracle/traits.hxx
index 8edaa54..ded74c9 100644
--- a/odb/oracle/traits.hxx
+++ b/odb/oracle/traits.hxx
@@ -583,7 +583,7 @@ namespace odb
public:
typedef std::vector<char> value_type;
typedef std::vector<char> query_type;
- typedef lob_callback image_type;
+ typedef char* image_type;
static void
set_value (value_type& v, const char* b, std::size_t n, bool is_null)
@@ -610,7 +610,7 @@ namespace odb
public:
typedef std::vector<unsigned char> value_type;
typedef std::vector<unsigned char> query_type;
- typedef lob_callback image_type;
+ typedef char* image_type;
static void
set_value (value_type& v, const char* b, std::size_t n, bool is_null)