最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp 数据库连接代码与数据库关闭代码
时间:2022-07-02 22:32:16 编辑:袖梨 来源:一聚教程网
dim conn,rs;//这里如果是调用外部文件就必须定义这里
这里是数据库创建联连方法
sub opendb()
set rs=server.CreateObject("adodb.recordset")
set conn=server.CreateObject("adodb.connection")
conn.connectionstring="provider=microsoft.jet.oledb.4.0; data source="&server.mappath("datasource/hhinfo.mdb")
conn.open
end sub
//这里是asp数据关闭方法
sub closedb()
if isobject(rs) then
if not(rs is nothing) then
rs.close
set rs=nothing
end if
end if
if isobject(conn) then
if not(conn is nothing) then
conn.close
set conn=nothing
end if
end if
end sub
本站原创转载注明:www.111com.net
相关文章
- 无主之地4引爆在即支线任务怎么做 引爆在即支线任务图文攻略 09-16
- 原神霜盏花怎么收集 霜盏花收集攻略 09-16
- 原神纳西妲绘想游迹怎么打-草神绘想游迹打法攻略 09-16
- 超级机器人大战Y再生增殖进化的邪念怎么过 终极进化战攻略 09-16
- 无主之地4支线绑架禁令怎么过 支线绑架禁令图文攻略 09-16
- 原神虹滴晶矿怎么收集 虹滴晶矿位置分享 09-16