HOME > ASP > ASP Forum > ASP เขียน code บวกค่า id พอมาถึง id ที่ 3 ระบบบอกว่า Violation of PRIMARY KEY constraint 'PK_aor_test'. Cannot insert duplicate key in object 'dbo.aor_test'.
ASP เขียน code บวกค่า id พอมาถึง id ที่ 3 ระบบบอกว่า Violation of PRIMARY KEY constraint 'PK_aor_test'. Cannot insert duplicate key in object 'dbo.aor_test'.
Microsoft OLE DB Provider for SQL Server error '80040e2f'
Violation of PRIMARY KEY constraint 'PK_aor_test'. Cannot insert duplicate key in object 'dbo.aor_test'.
/Other_requirements/test.asp, line 20 (หมายเหตุ: line 20 =rs.update)
set rs=server.CreateObject("ADODB.recordset")
sql="select * FROM dbo.aor_test order by id"
rs.open sql,Conn,1,3
if rs.recordcount = 0 then
id=0
else
id=rs("id")
end if
rs.addnew
rs("id")=id+1
rs("othertype_name")=request("txtother")
rs("inuser")=session("user")
rs("date_insert")=now()
rs.update
rs.close
set rs=nothing
response.Redirect("test.asp")