Reputation: 231
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.
Upvotes: 3
Views: 4786
Reputation: 6876
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.
Upvotes: 3