How to choose an Oracle provider for .Net application?

会有一股神秘感。 提交于 2019-11-29 04:42:28

I too recommend ODP.NET. Choose the latest provider (http://www.oracle.com/technology/tech/windows/odpnet/index.html). It can connect with an Oracle 9.2 database or a newer release of the database.

The MS Data Provider for Oracle is very limited. You can't work with arrays for example and user defined types. And why would Microsoft provide good support for connecting to Oracle?

You can also check out the provider of devart: http://www.devart.com/dotconnect/oracle/ . It supports the entity framework.

Dump OLE DB and ODBC options, if you have direct data access provider there is no need in using OLE DB or ODBC.

I recommend Oracle Data Provider for .NET.

Microsoft just announced it is deprecating System.Data.OracleClient.

I think that leaves you with a few choices (at least):

  • ODP.NET (free, from Oracle)
  • DevArt
  • DataDirect

DevArt also has a LINQ to Oracle implementation which could be interesting to you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!