首页 > 编程 > .NET > 正文

.NET(C#)连接各类数据库-集锦

2024-07-10 13:12:59
字体:
来源:转载
供稿:网友
1.c#连接连接access
程序代码:
-------------------------------------------------------------------------------
using system.data;
using system.data.oledb;
..

string strconnection="provider=microsoft.jet.oledb.4.0;";
strconnection
+=@"data source=c:begaspnetnorthwind.mdb";

oledbconnection objconnection
=new oledbconnection(strconnection);
..

objconnection.open();
objconnection.close();
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表