Oracle.ManagedDataAccess for .Net 3.5
The question arises:
Is there a library with Oracle.ManagedDataAccess for .NET 3.5?
The application is currently using .NET 4.0, but I have to use the .NET 3.5 application with the Oracle Independent Library.
+3
templaris
source
to share
1 answer
A fully managed driver that uses a namespace Oracle.ManagedDataAccess
is only available for .NET 4.0, as can be read in the Oracle documentation .
If you need to support .NET 3.5, you either need to use an unmanaged driver ( Oracle.DataAccess
namespace) or a third party driver such as dotConnect for Oracle .
+3
cremor
source
to share