|
-
April 4th, 2001, 10:37 AM
#1
Access via ADO to an Orale-database
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
-
April 4th, 2001, 10:52 AM
#2
Re: Access via ADO to an Orale-database
You must include msdaora.dll, wich contains the oracle drivers for ado
Tom Cannaerts
[email protected]
The best way to escape a problem, is to solve it.
-
April 4th, 2001, 12:56 PM
#3
Re: Access via ADO to an Orale-database
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
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|