Click to See Complete Forum and Search --> : Access via ADO to an Orale-database
smuehlfeld
April 4th, 2001, 10:37 AM
Hi,
I want to write a visual basic programm, with which I can access via ADO to an oracle-database. But I have the problem, that I don't know exactly, which dll-File I have to include.
Please help me.
Thanks
Sascha
Cakkie
April 4th, 2001, 10:52 AM
You must include msdaora.dll, wich contains the oracle drivers for ado
Tom Cannaerts
slisse@planetinternet.be
The best way to escape a problem, is to solve it.
Iouri
April 4th, 2001, 12:56 PM
For the current Oracle ODBC Driver from Microsoft:
oConn.Open "Driver={Microsoft ODBC for Oracle};" & _
"Server=OracleServer.world;" & _
"Uid=demo;" & _
"Pwd=demo;"
For the older Oracle ODBC Driver from Microsoft:
oConn.Open "Driver={Microsoft ODBC Driver for Oracle};" & _
"ConnectString=OracleServer.world;" & _
"Uid=demo;" & _
"Pwd=demo;"
Iouri Boutchkine
iouri@hotsheet.com
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.