.Net中如何连接到ODBC数据源
1.下载ODBC.NET (FrameWork 2.0以上默认未安装)
2.创建项目,添加Microsoft.Data.ODBC.dll 引用
3.cs代码如下:
using System.Data; using Microsoft.Data.Odbc;
4.连接代码示例:
SqlServer:
OdbcConnection cn; OdbcCommand cmd; string MyString; MyString="Select * from Customers"; cn= new OdbcConnection("Driver={SQL Server};Server=mySQLServer;UID=sa; PWD=myPassword;Database=Northwind;"); cmd=new OdbcCommand(MyString,cn); cn.Open(); MessageBox.Show("Connected"); cn.Close();
OLEDB JET:
OdbcConnection cn; OdbcCommand cmd; string MyString; MyString="Select * from Titles"; cn= new OdbcConnection("Driver={Microsoft Access Driver (*.mdb)}; DBQ=D:\Program Files\Microsoft Office\Office10\Samples\Northwind.mdb;UID=;PWD=;"); cmd=new OdbcCommand(MyString,cn); cn.Open(); MessageBox.Show("Connected"); cn.Close();
Oracle:
OdbcConnection cn; OdbcCommand cmd; string MyString; MyString="Select * from Customers"; cn= new OdbcConnection("Driver={Microsoft ODBC for oracle};Server=myOracleServer; UID=demo;PWD=demo;"); cmd=new OdbcCommand(MyString,cn); cn.Open(); MessageBox.Show("Connected"); cn.Close();
DSN:
OdbcConnection cn; OdbcCommand cmd; string MyString; MyString="Select * from Customers"; cn= new OdbcConnection("dsn=myDSN;UID=myUid;PWD=myPwd;"); cmd=new OdbcCommand(MyString,cn); cn.Open(); MessageBox.Show("Connected"); cn.Close();
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦