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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to connect to oracle database 10g? 1

Status
Not open for further replies.

jfdabiri

MIS
Feb 27, 2007
282
US
hi,
i'm trying to write a script to connect to an oracle database 10g and do some queries from a table. i know how the code is done for access databases like this:
Code:
Set objConnection = CreateObject("ADODB.Connection")
objConnection.Open _
   "Provider = Microsoft.Jet.OLEDB.4.0; " & _
   "Data Source = " & db_path
what would be the equivalent of this for oracle?
thanks.
 
thanks,
PHV.
that link has the connection string for every database.
it worked like a charm.
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top