Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Accessing Oracle Database

Status
Not open for further replies.

jjknack

Programmer
May 17, 2004
9
US
Can any one recommend a way to connect to an oracle database? I am looking around and am banging my head against a wall trying to find something that works well. Thanks.
 
I can giev you a list of APIs. Choose one of them:
DAO - easy in use, OLE wrapper to Jet engine
will access Oracle by using ODBC
ADO - easy in use, will access Oracle by using ODBC
is intended to be a wrapper of ODBC but also may
call JET engines
ODBC - a bit harder in use but the most portable code to
any databases/platforms/compilers
OCI - is API to access only Oracle databases,
as it is native is better to use this when working
only with Oracle, it is the hardest on using API from
all of listed there
OO4O - is an OLE wrapper to OCI. Much easier on using than
OCI. Also is only for Oracle.

Ion Filipski
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top