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.

Oracle.ManagedDataAccess.Core 23.*.* Nuget Package does not allow me to connect to a 19c database

Julien creachJan 7 2025

Hi,

I have an .NET 8 application which use the Oracle.ManagedDataAccess.Core nuget (version 3.21.170) with a 19c database.

I currently trying to upgrade to the 23.*.* version of this package (i tested with 23.7.0, 23.6.1 and 23.4.0) but it doesn't work..

I'm facing this exception : ORA-03135: Contact perdu pour la connexion
https://docs.oracle.com/error-help/db/ora-03135/

I made a simple test with the following code :

using Oracle.ManagedDataAccess.Client;
string connectionString = "MysuperConnectionString";
using (OracleConnection connection = new OracleConnection(connectionString))
{
    connection.Open();
    Console.WriteLine(connection.State);
}

Thank you in advance if you have any information that could help me,

Julien

Comments
Post Details
Added on Jan 7 2025
4 comments
129 views