解决C#连接Oracle不能使用System.Data.OracleClient程序集
最近项目需要把数据库从sqlServer转到Oracle
我用vs2013 .net framework 4.5 所以不支持System.Data.OracleClient
所以只能用其他方法来连接Oracle
步骤:
1.DLL下载后并引用 下载地址:Oracle.ManagedDataAccess.zip 下载后,将Oracle.ManagedDataAccess.dll放到自己的项目中,然后引用(不要告诉我你不会给自己的项目添加引用)
2.直接调用(connString 改为自己的连接字符串)
在这里提供一下改文件的下载地址吧 省的大家麻烦了:http://pan.baidu.com/s/1eS2ZOaQ
我写了一个demo 在asp.net 的开发环境下:
using Oracle.ManagedDataAccess.Client;
protected void Button1_Click(object sender, EventArgs e){
string connSt