追问:如何防止ASP语句向数据库里面写入多条件重复的数据? 5
Access数据库里面有一名为produit表单,其下存在4个字段,命名分别为ID(自动序号)、id_BigClass(大类名称)、id_SmallClass(小类名称)...
Access数据库里面有一名为produit表单,其下存在4个字段,命名分别为ID(自动序号)、id_BigClass(大类名称)、id_SmallClass(小类名称)及Huohao(产品名称),现在用ASP语句向数据库里面提交数据,要求当前提交的数据不能与数据库里面原有数据存在id_BigClass(大类名称)、id_SmallClass(小类名称)及Huohao(产品名称)同时相同的情况,如果存在则返回修改,如果不存在则写入数据,请问怎么实现??
原代码如下:
<%
if request("hid2")<>"" then
nowbigclass=request("bigclass")
nowsmallclass=request("smallclass")
nowhuohao=request("huohao")
nowid_bigclass=request("id_bigclass")
nowid_smallclass=request("id_smallclass")
if nowprice="" then
nowprice=0
end if
nowprice2=request("price2")
if nowprice2="" then
nowprice2=0
end if
nowgys=""
if rs_gys.eof=false then nowgys=rs_gys("company")
sql="select * from produit where huohao='"&nowhuohao&"'"
set rs=conn.execute(sql)
if rs.eof=false then
%>
%>
<script language="javascript">
alert("您输入的产品已经存在,请使用已有产品入库进行添加!")
window.history.go(-1)
</script>
<%
response.end
end if
。。。。。。。。。。。。。。。。。
%>
<script language="javascript">
alert("产品入库成功!")
</script>
--------------------------
以上代码只要huohao重复就会返回修改,如何加入对id_BigClass(大类名称)、id_SmallClass(小类名称)的判断?? 展开
原代码如下:
<%
if request("hid2")<>"" then
nowbigclass=request("bigclass")
nowsmallclass=request("smallclass")
nowhuohao=request("huohao")
nowid_bigclass=request("id_bigclass")
nowid_smallclass=request("id_smallclass")
if nowprice="" then
nowprice=0
end if
nowprice2=request("price2")
if nowprice2="" then
nowprice2=0
end if
nowgys=""
if rs_gys.eof=false then nowgys=rs_gys("company")
sql="select * from produit where huohao='"&nowhuohao&"'"
set rs=conn.execute(sql)
if rs.eof=false then
%>
%>
<script language="javascript">
alert("您输入的产品已经存在,请使用已有产品入库进行添加!")
window.history.go(-1)
</script>
<%
response.end
end if
。。。。。。。。。。。。。。。。。
%>
<script language="javascript">
alert("产品入库成功!")
</script>
--------------------------
以上代码只要huohao重复就会返回修改,如何加入对id_BigClass(大类名称)、id_SmallClass(小类名称)的判断?? 展开
1个回答
展开全部
sql="select * from produit where huohao='"&nowhuohao&"'"
改为
sql="select * from produit where huohao='" & nowhuohao & "' and id_bigclass='" & nowid_bigclass & "' and id_smallclass='" & nowid_smallclass & "'"
改为
sql="select * from produit where huohao='" & nowhuohao & "' and id_bigclass='" & nowid_bigclass & "' and id_smallclass='" & nowid_smallclass & "'"
追问
试过这样修改的,但不知道为什么程序错误!
追答
如果数据表名和字段名都没错而且字段类型都是字符串型的话,那么代码就没错的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询