Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix reading of OCCIBLOB #160

Merged
merged 1 commit into from Sep 17, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/connection.cpp
Expand Up @@ -699,7 +699,6 @@ Local<Object> Connection::CreateV8ObjectFromRow(ExecuteBaton* baton, vector<colu
v8::Local<v8::Object> v8Buffer = bufferConstructor->NewInstance(3, constructorArgs);
obj->Set(String::New(col->name.c_str()), v8Buffer);
delete v;
delete[] buffer;
break;
}
break;
Expand Down Expand Up @@ -829,7 +828,6 @@ void Connection::handleResult(ExecuteBaton* baton, Handle<Value> (&argv)[2]) {
v8::Handle<v8::Value> constructorArgs[3] = { uni::BufferToHandle(nodeBuff), v8::Integer::New(lobLength), v8::Integer::New(0) };
v8::Local<v8::Object> v8Buffer = bufferConstructor->NewInstance(3, constructorArgs);
obj->Set(String::New(returnParam.c_str()), v8Buffer);
delete [] buffer;
break;
}
case OutParam::OCCIDATE:
Expand Down