I am having a similar problem linking tables from Oracle 8i. I have a
VB front end with data kept in Oracle & Access. I want to link the tables in Access from Oracle and access the tables from the
VB code like they were Access tables. I have linked the tables and tried to run the code and as you might expect it prompts me for the Oracle password. I am trying to get rid of this prompt, but I don't want to create a new DSN that then needs to get loaded on everyone's computer. I saw the code in this chain, and I am going to try that (with the Oracle connection string), but is there some way in
VB code (not Access
VB) to access the linked tables with a user name and password using the same connection used to access the Access tables? Here is my Access connection string:
gcnnString = "Provider = MSDataShape; " & _
"Data Provider = Microsoft.Jet.OLEDB.4.0; " & _
"Data Source=" & db_path & "; " & _
"Jet OLEDB:Database Password=" & pwd
Oh and I am using ADODB recordsets.
Thank you for your help!
Meg.