From db9d270394e01c04f76abe765c0b65b34c13202f Mon Sep 17 00:00:00 2001 From: mayconheerdt Date: Wed, 23 Apr 2014 14:42:15 -0300 Subject: [PATCH] Add Long Type Validate if this issue is corrected with this modification. I'm getting the folling error: CreateColumnsFromResultSet: Unhandled oracle data type 8 --- src/connection.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/connection.cpp b/src/connection.cpp index 9339234..dd18d4b 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -318,6 +318,8 @@ void Connection::CreateColumnsFromResultSet(oracle::occi::ResultSet* rs, Execute case oracle::occi::OCCI_TYPECODE_VARCHAR2: case oracle::occi::OCCI_TYPECODE_VARCHAR: case oracle::occi::OCCI_TYPECODE_CHAR: + // long TYPE + case oracle::occi::OCCI_TYPECODE_LONG: col->type = VALUE_TYPE_STRING; break; case oracle::occi::OCCI_TYPECODE_CLOB: