當(dāng)前位置:首頁(yè)文章首頁(yè) IT學(xué)院 IT技術(shù)

ASP數(shù)據(jù)庫(kù)幾個(gè)簡(jiǎn)單操作方法分享

作者:  來(lái)源:  發(fā)布時(shí)間:2011-6-17 13:44:11  點(diǎn)擊:

這篇文章給大家分享學(xué)習(xí)的是關(guān)于ASP數(shù)據(jù)庫(kù)簡(jiǎn)單操作教程,正在學(xué)ASP的朋友們可以看一下。

<1 >.數(shù)據(jù)庫(kù)連接(用來(lái)單獨(dú)編制連接文件conn.asp)
< %
Set conn = Server.createObject("ADODB.Connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("\bbs\db1\user.mdb")
% >
(用來(lái)連接bbs\db1\目錄下的user.mdb數(shù)據(jù)庫(kù))
<2 >顯示數(shù)據(jù)庫(kù)記錄

原理:將數(shù)據(jù)庫(kù)中的記錄一一顯示到客戶(hù)端瀏覽器,依次讀出數(shù)據(jù)庫(kù)中的每一條記錄
如果是從頭到尾:用循環(huán)并判斷指針是否到末 使用: not rs.eof
如果是從尾到頭:用循環(huán)并判斷指針是否到開(kāi)始 使用:not rs.bof

< ! --#i nclude file=conn.asp-- > (包含conn.asp用來(lái)打開(kāi)bbs\db1\目錄下的user.mdb數(shù)據(jù)
庫(kù))
< %
set rs=server.createObject("adodb.recordset") (建立recordset對(duì)象)
sqlstr="select * from message" ---- >(message為數(shù)據(jù)庫(kù)中的一個(gè)數(shù)據(jù)表,即你要顯示的
數(shù)據(jù)所存放的數(shù)據(jù)表)
rs.open sqlstr,conn,1,3 ---- >(表示打開(kāi)數(shù)據(jù)庫(kù)的方式)
rs.movefirst ---- >(將指針移到第一條記錄)
while not rs.eof ---- >(判斷指針是否到末尾)
response.write(rs("name")) ---- >(顯示數(shù)據(jù)表message中的name字段)
rs.movenext ---- >(將指針移動(dòng)到下一條記錄)
wend ---- >(循環(huán)結(jié)束)
------------------------------------------------------
rs.close
conn.close 這幾句是用來(lái)關(guān)閉數(shù)據(jù)庫(kù)
set rs=nothing
set conn=nothing
-------------------------------------------------------
% >
其中response對(duì)象是服務(wù)器向客戶(hù)端瀏覽器發(fā)送的信息
<3 >增加數(shù)據(jù)庫(kù)記錄
增加數(shù)據(jù)庫(kù)記錄用到rs.addnew,rs.update兩個(gè)函數(shù)

< !--#i nclude file=conn.asp-- > (包含conn.asp用來(lái)打開(kāi)bbs\db1\目錄下的user.mdb數(shù)據(jù)
庫(kù))
< %
set rs=server.createObject("adodb.recordset") (建立recordset對(duì)象)
sqlstr="select * from message" ---- >(message為數(shù)據(jù)庫(kù)中的一個(gè)數(shù)據(jù)表,即你要顯示的
數(shù)據(jù)所存放的數(shù)據(jù)表)
rs.open sqlstr,conn,1,3 ---- >(表示打開(kāi)數(shù)據(jù)庫(kù)的方式)
rs.addnew 新增加一條記錄
rs("name")="xx" 將xx的值傳給name字段
rs.update 刷新數(shù)據(jù)庫(kù)
------------------------------------------------------
rs.close
conn.close 這幾句是用來(lái)關(guān)閉數(shù)據(jù)庫(kù)
set rs=nothing
set conn=nothing
-------------------------------------------------------
% >
.<4 >刪除一條記錄
刪除數(shù)據(jù)庫(kù)記錄主要用到rs.delete,rs.update
< !--#i nclude file=conn.asp-- > (包含conn.asp用來(lái)打開(kāi)bbs\db1\目錄下的user.mdb數(shù)據(jù)
庫(kù))
< %
dim name
name="xx"
set rs=server.createObject("adodb.recordset") (建立recordset對(duì)象)
sqlstr="select * from message" ---- >(message為數(shù)據(jù)庫(kù)中的一個(gè)數(shù)據(jù)表,即你要顯示的數(shù)據(jù)所存放的數(shù)據(jù)表)
rs.open sqlstr,conn,1,3 ---- >(表示打開(kāi)數(shù)據(jù)庫(kù)的方式)
-------------------------------------------------------
while not rs.eof
if rs.("name")=name then
rs.delete
rs.update 查詢(xún)數(shù)據(jù)表中的name字段的值是否等于變量name的值"xx",如果符合就執(zhí)行刪
除,
else 否則繼續(xù)查詢(xún),直到指針到末尾為止
rs.movenext
emd if
wend
------------------------------------------------------
------------------------------------------------------
rs.close
conn.close 這幾句是用來(lái)關(guān)閉數(shù)據(jù)庫(kù)
set rs=nothing
set conn=nothing
-------------------------------------------------------
% >
<5 >關(guān)于數(shù)據(jù)庫(kù)的查詢(xún)
(a) 查詢(xún)字段為字符型
< %
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 (檢測(cè)user值和pass值是否為空,可以檢測(cè)
到空格)
response.write("注冊(cè)信息不能為空")
else
set rs=server.createObject("adodb.recordset")
sqlstr="select * from user where user='"&user&"'" (查詢(xún)user數(shù)據(jù)表中的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
rs.close
conn.close
set rs=nothing
set conn=nothing
response.write("注冊(cè)成功")
end if
rs.close
conn.close
set rs=nothing
set conn=nothing
response.write("注冊(cè)重名")
% >
(b)查詢(xún)字段為數(shù)字型
< %
dim num
num=request.form("num")
set rs=server.createObject("adodb.recordset")
sqlstr="select * from message where id="&num (查詢(xún)message數(shù)據(jù)表中id字段的值是否與
num相等,其中id為數(shù)字型)
rs.open sqlstr,conn,1,3
if not rs.eof then
rs.delete
rs.update
rs.close
conn.close
set rs=nothing
set conn=nothing
response.write("刪除成功")
end if
rs.close
conn.close
set rs=nothing
set conn=nothing
response.write("刪除失敗")
% >
%>

相關(guān)軟件

相關(guān)文章

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z