ODP.net and Oracle 11g

asp.netodp.netoracle11g

I am developing my own ASP.net 4.0 website. I installed Oracle 11g on my server at home, and Oracle Client 11g on my laptop. I am using SQL Developer to view Database. Everything is going great and I can view data.

however, I am trying now to make my code communicate properly with my database using Visual Studio 2010. I want to use ODP.net to connect to database. I don't know how and where to start! Please guide me with instructions or a good book that explain the relationship between Oracle 11g and ASP.net 4.0.

Also, Is it good to use ODP.net or other tools?

Thanks,

Sami

Best Answer

ODP.Net is the way to go as Microsoft has declared the .NET's Oracle implementation deprecated (see here: System.Data.OracleClient Namespace).

ODP.Net is a just another standard ADO.NET provider. Here is a tutorial here: Using Oracle Data Provider for .NET

Related Topic