ODAC 9.4.13 where are INITOCI and INITNET hiding ?

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
wchris
Posts: 51
Joined: Thu 09 Jun 2005 09:44

ODAC 9.4.13 where are INITOCI and INITNET hiding ?

Post by wchris » Tue 13 Jan 2015 14:40

Could not find INITOCI and INITNET required to recompile my DLL :shock:

Solution please ?
Thanks

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: ODAC 9.4.13 where are INITOCI and INITNET hiding ?

Post by AlexP » Thu 15 Jan 2015 09:22

Now, the Init method is moved to the TOracleHomes class. To access this method, you can use the OracleHomes global variable declared in the OraCall module.

wchris
Posts: 51
Joined: Thu 09 Jun 2005 09:44

Re: ODAC 9.4.13 where are INITOCI and INITNET hiding ?

Post by wchris » Fri 16 Jan 2015 08:47

replacing

{ if (Wsession.Options.Net = False) then
InitOCI
else
InitNet;
}

by

OracleHomes.Init;

did the trick :)

Thank you Alex

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: ODAC 9.4.13 where are INITOCI and INITNET hiding ?

Post by AlexP » Fri 16 Jan 2015 09:31

If you have any further questions, feel free to contact us.

Post Reply