Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Connection with Oracle Client 19 Software to Oracle 12 Database

Stefan DöngesNov 15 2024 — edited Nov 15 2024

In the last years we have Oracle Client 11 Software on our PC-Clients and we had a successfully Connection to a Oracle 12 Database for Example with the following Code:

oCon = CreateObject("ADODB.Connection")
oCon.Provider = "MSDAORA.1"
oCon.Properties("Data Source") = "XYZ"
oCon.Properties("User ID") = "ABC"
oCon.Properties("Password") = "JKL"
oCon.Open
RsT = CreateObject("ADODB.Recordset")
RsT.ActiveConnection = oCon

We want to install a Oracle 19 Database in January, now we installed on the first PC-Client the Oracle Client 19 Software. The Connection to the Oracle 12 Database did not work with the old Code. Error-Message: ORA-12557: TNS: Protokoll-Adapter do not load

What must we change in the Code to Connecting to the Oracle 12 Database with the Oracle Client 19 Software?

Greetings,

Stefan

This post has been answered by Stefan Dönges on Nov 18 2024
Jump to Answer
Comments
Post Details
Added on Nov 15 2024
4 comments
80 views