Problem using OraLoader

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
moolip
Posts: 1
Joined: Thu 10 Feb 2005 16:18

Problem using OraLoader

Post by moolip » Thu 10 Feb 2005 16:27

Whenever I caal the load method for my OraLoader component, I get the following error message:

'Need Oracle 8i Call Interface'

I cannot any topic on this. What does this message refer to>

Alex
Posts: 655
Joined: Mon 08 Nov 2004 08:39

Post by Alex » Thu 10 Feb 2005 17:19

This message can appear if you set TOraLoader.LoadMode property to lmDirect.
You must know that this feature is supported only with using Oracle client version 8.1 or higher.
So if you have older client version, or if you set TOraSession.Options.UseOCI7 property to True or if you set TOraSession.Options.Net property to True you must get this message. The way out is correspondingly: upgrade your Oracle client, unset TOraSession.Options.UseOCI7 property or unset TOraSession.Options.Net property.

Post Reply