您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

ASP快速入门教程(2)

来源:未知 责任编辑:责任编辑 发表时间:2013-11-18 20:55 点击:

要显示的数据所存放的数据表) 
rs.open sqlstr,conn,1,3 ---->(表示打开数据库的方式) 
rs.addnew 新增加一条记录 
rs("name")="xx" 将xx的值传给name字段 
rs.update 刷新数据库  
 
 
------------------------------------------------------  
rs.close 
conn.close 这几句是用来关闭数据库 
set rs=nothing 
set conn=nothing 
-------------------------------------------------------  
 
 
%> 


<4>删除一条记录
删除数据库记录主要用到rs.delete,rs.update
[html]
<!--#include file=conn.asp--> (包含conn.asp用来打开bbsdb1目录下的user.mdb数据库) 
<% 
dim name 
name="xx" 
set rs=server.CreateObject("adodb.recordset") (建立recordset对象) 
sqlstr="select * from message" ---->(message为数据库中的一个数据表,即你 
要显示的数据所存放的数据表) 
rs.open sqlstr,conn,1,3 ---->(表示打开数据库的方式) 
-------------------------------------------------------  
while not rs.eof 
if rs.("name")=name then 
rs.delete 
rs.update  
查询数据表中的name字段的值是否等于变量name的值"xx",如果符合就执行删除, 
else 否则继续查询,直到指针到末尾为止 
rs.movenext 
emd if 
wend 
------------------------------------------------------ 
------------------------------------------------------  
rs.close 
conn.close 这几句是用来关闭数据库 
set rs=nothing 
set conn=nothing 
-------------------------------------------------------  
%> 


<5>关于数据库的查询
(a) 查询字段为字符型
[html] 
<% 
dim user,pass,qq,mail,message 
user=request.Form("user") 
pass=request.Form("pass") 
qq=request.Form("qq") 
mail=request.Form("mail") 
message=request.Form("message") 
if trim(user)&"x"="x" or trim(pass)&"x"="x" then (检测user值和pass值是否 
为空,可以检测到空格) 
response.write("注册信息不能为空") 
else 
set rs=server.CreateObject("adodb.recordset") 
sqlstr="select * from user where user=‘’"&user&"‘’" (查询user数据表中的user 
字段其中user字段为字符型) 
rs.open sqlstr,conn,1,3 
if rs.eof then 
rs.addnew 
rs("user")=user 
rs("pass")=pass 
rs("qq")=qq 
rs("mail")=mail 
rs("message")=message 
rs.update 

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • WAP常见问题问答大全(四)
  • ASP开发必备:WEB打印代码大全
  • ASP调用系统ping命令
  • asp缓存技术
  • ASP教程:第三篇 ASP基础
  • 用ASP+XML打造留言本(4)
  • 关于ASP Recordset 分页出现负数解决方法及建议
  • 用asp怎样编写文档搜索页面(5)
  • ASP处理多关键词查询实例代码
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1