3

The question is:

Is there a library with Oracle.ManagedDataAccess for .NET 3.5?

Currently application uses.NET 4.0 but I must crate opportunity to use application on .NET 3.5 with independent Oracle library.

templaris
  • 221
  • 5
  • 11

1 Answers1

3

The fully managed driver, which uses the Oracle.ManagedDataAccess namespace, is only available for .NET 4.0, as can be read in the Oracle documentation.

If you need to support .NET 3.5 you have to either use the unmanaged driver (Oracle.DataAccess namespace) or a third party driver like dotConnect for Oracle.

cremor
  • 6,669
  • 1
  • 29
  • 72