dhancy
Board Regular
- Joined
- Jul 10, 2013
- Messages
- 123
- Office Version
- 365
- Platform
- Windows
Hello,
I have an Excel VBA script that connects to our Oracle database. The code to make this connection looks like this:
It works great when I run it; however, when a coworker attempts to run this, he is seeing this error when the code above tries to make the connection:
Does anyone know what he might be missing on his end that is causing this error?
Thank you!
Dennis
I have an Excel VBA script that connects to our Oracle database. The code to make this connection looks like this:
VBA Code:
With ActiveSheet.ListObjects.Add(SourceType:=0, Source:= _
"OLEDB;Provider=OraOLEDB.Oracle;Password= ....
...
End With
It works great when I run it; however, when a coworker attempts to run this, he is seeing this error when the code above tries to make the connection:
Does anyone know what he might be missing on his end that is causing this error?
Thank you!
Dennis