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:
what would be the equivalent of this for oracle?
thanks.
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
thanks.