家园
个人
文集
http://
www
.
5x54
.
com
[备忘]ASP中连接Access数据库的代码
作者:
5x54
点击:
读取中...
次
发布日期:
2007-07-02.19:02
引用代码:
dim Db
Db="数据库.mdb" '数据库连接地址
Dim ConnStr
ConnStr = "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " & Server.MapPath(MyDbPath & db)
on error resume next
Set conn = Server.CreateObject("ADODB.Connection")
conn.open ConnStr
If Err Then
err.Clear
Set Conn = Nothing
Response.Write "数据库连接出错,请检查连接字串。"
Response.End
End If
收藏此文章
打印此文章
编辑此文章
『关闭窗口』