asp.net数据库连接字符串集合

(一)常用连接:
1.使用SqlConnection对象:
public void SqlConnectionOpen()
{
   SqlConnection conn= new SqlConnection();
   conn.ConnectionString = "user id=sa;password=;initial catalog=northwind;datasource=localhost;connect Timeout=20";
   conn.Open();
}
2.使用OleDbConnection对象:
public void OleDBConnectionOpen()
{
   OleDBConnection conn = new OleDbconnection();
   conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource=C:/Customer.mdb";
   conn.Open();
}
(二)其它:
1.ODBC连接Access本地数据库
  conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:/a.mdb;"+
  "Uid=Admin;"+"Pwd=;");
2.ODBC连接Access系统数据库
  conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:/a.mdb;"+
  "SystemDB=Admin;"+"Pwd=;");
3.ODBC连接Access系统数据库
  conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=//server/share/a.mdb;");
4.ODBC连接Excel系统数据库
  conGoodDay.Open("Driver={Microsoft Access Driver(*.xls)};"+"DriverId=790;"+
  "Dbq=C:/a.xls;"+"DefaultDir=c:/somepath;");
5.ODBC连接Oracle系统数据库
  conGoodDay.Open("Driver={Microsoft ODBC for Oracle};"+"Server=OracleServer.world;"+
  "Uid=Admin;"+"Pwd=password;");
6.ODBC连接Sql Servr
  conGoodDay.Open("Driver={Sql Server};"+"Server=myServer;"+"Database=myDatabaseName;"
  "Uid=Admin;"+"Pwd=password;");
7.ODBC连接Visual FoxPro
  conGoodDay.Open("Driver={Microsoft Visual FoxPro Driver};"+
  "SourceType=DBC;"+"SourceDB=c:a.dbc;"+"Exclusive=No;");
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值