ORACLE LITE

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
idubi

ORACLE LITE

Post by idubi » Thu 09 Jun 2005 11:58

hellow !

does anyone knows if odac suports oracle lite (not personal oracle) technology ? can anyone give me directions about it ?

Paul
Posts: 725
Joined: Thu 28 Oct 2004 14:06

Post by Paul » Thu 09 Jun 2005 12:30

ODAC supports Oracle Lite 8 only. You must set the following

Code: Select all

TOraSession.Username = 'system';
TOraSession.Password = 'manager';
TOraSession.Server   = 'ODBC:POLITE';
TOraSession.Home     = 
TOraSession.Options.Net = False;

Post Reply