asp.net怎么连接access数据库

发布时间:2021-01-06编辑:脚本学堂
asp.net程序中如何连接access数据库?分享一例代码,学习下asp.net连接access数据库的方法,有需要的朋友做个参考。

例子,asp.net连接access数据库
文件:index.aspx
 

复制代码 代码示例:
<%@ page language="c#" %>
<%@ import namespace="system.data" %>
<%@ import namespace="system.data.oledb" %>
<script runat="server">
// insert page code here
//
void page_load(){
string db=@"database/data.mdb";
string connstr="provider=microsoft.jet.oledb.4.0;data source="+server.mappath(db)+";";
string sqlcmd="create table ieb_webs(id identity primary key,title varchar(255) default null)";
oledbconnection conn=new oledbconnection(connstr);
conn.open();
oledbcommand olecmd=new oledbcommand(sqlcmd,conn);
olecmd.executenonquery();  //执行sql命令
response.write("数据表建立完成!");
}
conn.close();
conn=null;
olecmd=null;
}
</script>
<html>
<head>
</head>
<body>
<form method="post" runat="server">
<!-- insert content here -->
</form>
</body>
</html>

在asp.net中连接access数据库,需要microsoft.jet.oledb.4.0驱动,一般默认都有安装。