Skip to content

Commit

Permalink
Enable temporary LOB caching in order to avoid disk I/O as suggested
Browse files Browse the repository at this point in the history
(#10).
  • Loading branch information
anthony-tuininga committed Apr 27, 2017
1 parent 1cd9574 commit d6ba2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dpiOci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ int dpiOci__lobCreateTemporary(dpiLob *lob, dpiError *error)
else lobType = DPI_OCI_TEMP_CLOB;
status = (*dpiOciSymbols.fnLobCreateTemporary)(lob->conn->handle,
error->handle, lob->locator, DPI_OCI_DEFAULT,
lob->type->charsetForm, lobType, 0, DPI_OCI_DURATION_SESSION);
lob->type->charsetForm, lobType, 1, DPI_OCI_DURATION_SESSION);
return dpiError__check(error, status, lob->conn, "create temporary LOB");
}

Expand Down

0 comments on commit d6ba2c7

Please sign in to comment.