我們可以使用SQL INSERT INTO命令記錄在數據庫中添加一個表。
添加記錄到數據庫表中
我們希望一個新的記錄在Northwind數據庫添加到客戶表。 我們首先創建一個包含我們想從收集數據的字段的形式:
<html>
<body>
<form method="post" action="demo_add.asp">
<table>
<tr>
<td>CustomerID:</td>
<td><input name="custid"></td>
</tr><tr>
<td>Company Name:</td>
<td><input name="compname"></td>
</tr><tr>
<td>Contact Name:</td>
<td><input name="contname"></td>
</tr><tr>
<td>Address:</td>
<td><input name="address"></td>
</tr><tr>
<td>City:</td>
<td><input name="city"></td>
</tr><tr>
<td>Postal Code:</td>
<td><input name="postcode"></td>
</tr><tr>
<td>Country:</td>
<td><input name="country"></td>
</tr>
</table>
<br><br>
<input type="submit" value="Add New">
<input type="reset" value="Cancel">
</form>
</body>
</html>
當用戶按下提交按鈕的形式發送到一個名為"demo_add.asp" 該"demo_add.asp"文件包含將添加一個新的記錄Customers表的代碼:
<html>
<body>
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
sql="INSERT INTO customers (customerID,companyname,"
sql=sql & "contactname,address,city,postalcode,country)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("custid") & "',"
sql=sql & "'" & Request.Form("compname") & "',"
sql=sql & "'" & Request.Form("contname") & "',"
sql=sql & "'" & Request.Form("address") & "',"
sql=sql & "'" & Request.Form("city") & "',"
sql=sql & "'" & Request.Form("postcode") & "',"
sql=sql & "'" & Request.Form("country") & "')"
on error resume next
conn.Execute sql,recaffected
if err<>0 then
Response.Write("No update permissions!")
else
Response.Write("<h3>" & recaffected & " record added</h3>")
end if
conn.close
%>
</body>
</html>
重要
如果使用SQL INSERT命令要注意以下幾點:
- 如果表中包含一個主鍵,確保一個獨特的,非空值追加到主鍵字段(如果沒有,則供應商可以不追加記錄,或發生錯誤)
- 如果表中包含一個自動編號字段,不包括在SQL INSERT命令此字段(這個字段的值將由供應商被照顧的自動)
什麼字段沒有數據?
在MS Access數據庫,您可以輸入零長度字符串("")如果設置AllowZeroLength屬性為是在文本,超鏈接,和備註字段。
Note:並非所有的數據庫都支持零長度字符串,當添加空白字段記錄可能會導致錯誤。 檢查你的數據庫支持的數據類型是很重要的。