我們可使用sql的update來更新資料庫表中的某條記錄。
我們希望更新northwind資料中customers表的某條記錄。首先我們需要建立乙個**,來列出customers中的所有記錄。
" & ucase(x.name) & "")
next
%>
如果使用者點選"customerid"列中的按鈕,會開啟乙個新檔案"demo_update.asp"。此檔案包含了建立輸入域的源**,這些輸入域基於資料庫中記錄的字段,同時也含有乙個儲存修改的「更新按鈕」:
0 then
response.write("no update permissions!")
else
response.write("record " & cid & " was updated!")
end if
end if
conn.close
%>
ADO初學者教程 ADO 刪除記錄
我們可使用sql的delete命令來刪除資料庫表中的某條記錄。我們希望刪除northwind資料庫的customers表中的一條記錄。首先我們需要建立乙個 來列出customers中的所有記錄。ucase x.name next 假如使用者點選 customerid 列中的按鈕,會開啟新檔案 dem...
ADO初學者教程 ADO 新增記錄
我們可以使用sql的insert into命令向資料庫中的表新增記錄。我們希望向northwind資料庫中的customers表新增一條新的記錄。我們首先要建立乙個表單,這個表單包含了我們希望選定資料的字段 當使用者按下確認按鈕時,這個表單就會被送往名為 demo add.asp 的檔案。檔案 de...
ADO初學者教程 ADO 顯示
顯示來自記錄集中的資料的最常用的方法,就是把資料顯示在html 中。我們有乙個名為 northwind 的資料庫,並且我們希望顯示出 customers 表中的資料 記得以.asp為副檔名來儲存這個檔案 next response.write rs.movenext loop rs.close co...