asp关闭数据库链接之前先做判断

来源:互联网 发布:淘宝注册年龄要求 编辑:程序博客网 时间:2024/06/08 06:33

 if isobject(rs) then if not rs is nothing then if rs.state=1 then rs.close
 if oConn.state=1 then oConn.close


 set rs=nothing
 set oConn=nothing