当前位置: 网学 > 编程文档 > ASP > 正文

发一个ASP的ADODB类代码

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/16
end if
end if
End Function
''更新记录
Public Function Update_Table(Sql)
if not isempty(conn) or isnull(conn) then
call OpenConn(dbclass)
elseif conn.state = 0 then
call OpenConn(dbclass)
end if
on error resume next
if Sql <> "" then
conn.Execute Sql,Updated
if err then
Update_Table = false
err.clear
else
Update_Table = true
end if
Else
Update_Table = false
end if
conn.close
Set conn = nothing
End Function
''增加
''输入:insert SQL语句,表名,自增字段
Public Function Insert_Table(sql,table,id_column)
if not isempty(conn) or isnull(conn) then
call OpenConn(dbclass)
elseif conn.state = 0 then
call OpenConn(dbclass)
end if
on error resume next
if sql <> "" then
conn.Execute(sql)
if err then
Insert_Table = false:err.clear
else
Insert_Table = true
end if
''获得最后增加ID
if table <> "" and id_column <> "" then
Set ds = conn.Execute("select "&id_column&" from "&table&" order by "&id_column&" desc")
end if
if err then
Insertd = 0:err.clear
else Insertd = ds(0)
end if
Set ds = nothing
closed()
else
Insert_Table = false
end if
End Function
''关闭数据库链接
Public Function closed()
if not isempty(rs) and not isnull(rs) then
if rs.state = 1 then
rs.close
end if
end if
r

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号