Times Ten LOB support

77 views Asked by At

I have a passthrough connection in my c# application and I'm trying to do a select on a clob column which is in the database but not in-memory. But I get the following error, any ideas what I'm missing?

ORA-57000: TT5187: Caching LOBs from Oracle requires using an OCI client library provided by the TimesTen installation, or other versions of OCI client supported by TimesTen. -- file "bdbLob.c", lineno 224, procedure "ttBDbOraLobGetOraIdSnap"

1

There are 1 answers

0
Nikhil On

As to Mat's comment above, I'm posting the solution for this problem. Created an entry in the config file as follows:

<oracle.dataaccess.client>
<settings>
  <add name="DllPath"               value="C:\oracle\bin"/>
  <add name="FetchSize"             value="65536"/>
  <add name="PromotableTransaction" value="promotable"/>
  <add name="StatementCacheSize"    value="10"/>     
</settings>

Dllpath is all that is needed to resolve the dll path.