ADO 添加记录

我们可以使用 SQL 的 INSERT INTO 命令向数据库中的表添加记录。

向数据库中的表添加记录

我们希望向 Northwind 数据库中的 Customers 表添加一条新的记录。我们首先要创建一个表单,这个表单包含了我们需要从中搜集数据的输入域:

  1. <html>
  2. <body>
  3.  
  4. <form method="post" action="demo_add.asp">
  5. <table>
  6. <tr>
  7. <td>CustomerID:</td>
  8. <td><input name="custid"></td>
  9. </tr><tr>
  10. <td>Company Name:</td>
  11. <td><input name="compname"></td>
  12. </tr><tr>
  13. <td>Contact Name:</td>
  14. <td><input name="contname"></td>
  15. </tr><tr>
  16. <td>Address:</td>
  17. <td><input name="address"></td>
  18. </tr><tr>
  19. <td>City:</td>
  20. <td><input name="city"></td>
  21. </tr><tr>
  22. <td>Postal Code:</td>
  23. <td><input name="postcode"></td>
  24. </tr><tr>
  25. <td>Country:</td>
  26. <td><input name="country"></td>
  27. </tr>
  28. </table>
  29. <br /><br />
  30. <input type="submit" value="Add New">
  31. <input type="reset" value="Cancel">
  32. </form>
  33.  
  34. </body>
  35. </html>

当用户按下确认按钮时,这个表单就会被送往名为 "demo_add.asp" 的文件。文件 "demo_add.asp" 中含有可向 Customers 表添加一条新记录的代码:

  1. <html>
  2. <body>
  3.  
  4. <%
  5. set conn=Server.CreateObject("ADODB.Connection")
  6. conn.Provider="Microsoft.Jet.OLEDB.4.0"
  7. conn.Open "c:/webdata/northwind.mdb"
  8.  
  9. sql="INSERT INTO customers (customerID,companyname,"
  10. sql=sql & "contactname,address,city,postalcode,country)"
  11. sql=sql & " VALUES "
  12. sql=sql & "('" & Request.Form("custid") & "',"
  13. sql=sql & "'" & Request.Form("compname") & "',"
  14. sql=sql & "'" & Request.Form("contname") & "',"
  15. sql=sql & "'" & Request.Form("address") & "',"
  16. sql=sql & "'" & Request.Form("city") & "',"
  17. sql=sql & "'" & Request.Form("postcode") & "',"
  18. sql=sql & "'" & Request.Form("country") & "')"
  19.  
  20. on error resume next
  21. conn.Execute sql,recaffected
  22. if err<>0 then
  23. Response.Write("No update permissions!")
  24. else
  25. Response.Write("<h3>" & recaffected & " record added</h3>")
  26. end if
  27. conn.close
  28. %>
  29.  
  30. </body>
  31. </html>

重要事项

在您使用 INSERT command 命令时,请注意以下事项:

  • 如果表含有一个主键,请确保向主键字段添加的值是唯一且非空的(否则,provider 就不会追加此记录,亦或发生错误)
  • 如果表含有一个自动编号的字段,请不要在 INSERT 命令中涉及此字段(这个字段的值是由 provider 负责的)

关于无数据字段

在 MS Access 数据库中,假如您将 AllowZeroLength 属性设置为 “Yes”,您可以在文本、超链接以及备忘字段输入零长度的字符串 ("")。

注释:并非所有的数据库都支持零长度的字符串,因而当添加带有空白字段的记录时可能会产生错误。因此,检查您使用的数据库所支持的数据类型是很重要的。