ASP如何修改數(shù)據(jù)庫(kù)記錄?

2022-09-13 06:04

2個(gè)回答
問(wèn)題出在conn.execute,一個(gè)頁(yè)面不能同時(shí)出現(xiàn)2個(gè)execute方法,如果要用2次,必須先關(guān)閉清空第一個(gè),才能執(zhí)行到再用execute方法,一般為了避免這種情況,所以采用以下寫法。希望能夠幫到你。

<%
id = Trim(request.Form("id"))
xm = request.Form("xm")
lxfs = request.Form("lxfs")
bz = request.Form("bz")
Set rs=Sever.CreateObject("ADODB.Recordest");
Sql ="update txl set xm='"&xm&"',lxfs='"&lxfs&"',bz='"&bz&"'"
Rs.open(Sql,conn,1,3);
sqlstmt = sqlstmt & " where id="&id&""
conn.execute(sqlstmt)
conn.close
set conn=nothing
server.Transfer"index.asp"
%>
sqlstmt = sqlstmt & " where id="&id
你的id應(yīng)該是數(shù)值型或自動(dòng)編號(hào)的吧,如果是,絕對(duì)不能加后面的引號(hào)
相關(guān)問(wèn)答
ASP中如何修改數(shù)據(jù)庫(kù)中的記錄數(shù)據(jù)?
2個(gè)回答2022-09-20 14:09
SQL="Select * from 異常記錄 where 編號(hào)="&id rs.open SQL,conn,1,3 rs("狀態(tài)")=ing rs("完成日期")=da rs.Upda...
全文
asp 數(shù)據(jù)庫(kù)記錄修改問(wèn)題
2個(gè)回答2022-08-01 10:55
if cint(Request("cj")) > cint(rs("cj")) then 試試
asp怎么修改數(shù)據(jù)庫(kù)數(shù)據(jù)
1個(gè)回答2022-08-19 18:27
你要設(shè)置一個(gè)判斷語(yǔ)句來(lái)限制數(shù)據(jù)的自動(dòng)添加
asp中修改數(shù)據(jù)庫(kù)記錄問(wèn)題請(qǐng)教
3個(gè)回答2022-08-16 16:06
" response.write "alert('回復(fù)留言不允許為空!');" response.write "javascript:history.go(-1);" response.w...
全文
asp數(shù)據(jù)可以修改記錄
1個(gè)回答2022-09-16 20:58
你要先判斷一下找沒(méi)到記錄啊 rs.open exec,conn,1,3 后面加一句 if not (rs.eof and rs.bof) then 再在rs.close前面加一句 end i...
全文
asp怎樣查詢數(shù)據(jù)庫(kù)
1個(gè)回答2022-08-27 23:37
不分頁(yè)的: '調(diào)用連接數(shù)據(jù)庫(kù)文件 應(yīng)該會(huì)吧. '這些都通俗的 打開數(shù)據(jù)庫(kù)中的你要的表 我自己的 while not rs. eof 'while語(yǔ)句 一直查到最后 '這些就是你...
全文
asp顯示sqlite數(shù)據(jù)庫(kù)數(shù)據(jù)問(wèn)題!
1個(gè)回答2022-08-31 19:11
一.確保用conn.execute("insert into admin values('usera',20)") 以將usera和20添加到數(shù)據(jù)表admin中 二.新建一個(gè)asp頁(yè),寫代碼測(cè)試...
全文
如何將excel數(shù)據(jù)通過(guò)asp導(dǎo)入數(shù)據(jù)庫(kù)
2個(gè)回答2023-04-20 02:25
'定義打開Excel表格的函數(shù) Function OpenExcel(path) dim excel,rs,strsql On Error Resume Next Set rs = Server.Cr...
全文
如何在ASP頁(yè)面顯示數(shù)據(jù)庫(kù)最新記錄?急!謝謝!
4個(gè)回答2022-07-24 01:30
select top 100(你要顯示的條數(shù),我這里是100) * from 表名 order by 日期字段 desc 這樣就可以顯示最新的前一百條數(shù)據(jù)了。
在ASP中如何修改ACCESS數(shù)據(jù)庫(kù)中的信息,請(qǐng)高手指點(diǎn)。
1個(gè)回答2022-09-27 19:42
asp連接數(shù)據(jù)庫(kù)技術(shù)是asp中比較精華的部分. 你一定要看看asp的教材中關(guān)于ado的部分. ado控件是asp連接數(shù)據(jù)庫(kù)最基本的方法,其中常用的對(duì)象是connection,recordset和com...
全文
熱門問(wèn)答