ADO Command对象用于执行面向数据库的一次简单查询。此查询可执行诸如创建、添加、取回、删除或更新记录等动作。如果该查询用于取回数据,此数据将以一个 RecordSet 对象返回。#t#
Command对象的主要特性是有能力使用存储查询和带有参数的存储过程。我们希望更新 Northwind 数据中 Customers 表的某条记录。首先我们需要创建一个表格,来列出 Customers 中的所有记录。
- <html>
- <body>
- <%
- set conn=Server.CreateObject("ADODB.Connection")
- conn.Provider="Microsoft.Jet.OLEDB.4.0"
- conn.Open "c:/webdata/northwind.mdb"
- set rs=Server.CreateObject("ADODB.Recordset")
- rs.open "SELECT * FROM customers",conn
- %>
- <h2>List Database</h2>
- <table border="1" width="100%">
- <tr>
- <%
- for each x in rs.Fields
- response.write("<th>" & ucase(x.name) & "</th>")
- next
- %>
- </tr>
- <% do until rs.EOF %>
- <tr>
- <form method="post" action="demo_update.asp">
- <%
- for each x in rs.Fields
- if lcase(x.name)="customerid" then%>
- <td>
- <input type="submit" name="customerID" value="<%=x.value%>">
- </td>
- <%else%>
- <td><%Response.Write(x.value)%></td>
- <%end if
- next
- %>
- </form>
- <%rs.MoveNext%>
- </tr>
- <%
- loop
- conn.close
- %>
- </table>
- </body>
- </html>
如果用户点击Command对象列中的按钮,会打开一个新文件 "demo_update.asp"。此文件包含了创建输入域的源代码,这些输入域基于数据库中记录的字段,同时也含有一个保存修改的“更新按钮”。