在关键字 'and' 附近有语法错误。
setrs=conn.execute("select*fromexaminationwherestudentnumber='"&session("number")&"'a...
set rs=conn.execute("select * from examination where studentnumber='"&session("number")&"' and examinationid="&request("testid")&" and pass='0'")
testid 为int型,不空有值
studentnumber为nvarchar型
改成那个还是这个问题,我把="&request("testid")&" 加上一对单引号就不是这个问题了,但是还是进不了考试页面,回到登陆页面了,谢谢解决一下加分! 展开
testid 为int型,不空有值
studentnumber为nvarchar型
改成那个还是这个问题,我把="&request("testid")&" 加上一对单引号就不是这个问题了,但是还是进不了考试页面,回到登陆页面了,谢谢解决一下加分! 展开
2个回答
展开全部
set rs=conn.execute("select * from examination where studentnumber='"&session("number")&"' and examinationid="&request("testid")&" and pass='0'")
可以修改为:
set rs=conn.execute("select * from examination where studentnumber='"&session("number")&"' and examinationid='"&request("testid")&"' and pass='0'")
试试看。
可能你的request("testid")为空,或者非数字类型,这样就会参数SQL语法错误,请检查一下request("testid")的值。
补充:
把你的程序修改如下,你看一下调试信息吧:
sql="select * from examination where studentnumber='"&session("number")&"' and examinationid="&request("testid")&" and pass='0'"
response.write "调试:"&sql&":调试"
set rs=conn.execute(sql)
补充:
请你粘贴上面调试语句输出的内容,粘贴以后你可能自己就能明白是什么原因
可以修改为:
set rs=conn.execute("select * from examination where studentnumber='"&session("number")&"' and examinationid='"&request("testid")&"' and pass='0'")
试试看。
可能你的request("testid")为空,或者非数字类型,这样就会参数SQL语法错误,请检查一下request("testid")的值。
补充:
把你的程序修改如下,你看一下调试信息吧:
sql="select * from examination where studentnumber='"&session("number")&"' and examinationid="&request("testid")&" and pass='0'"
response.write "调试:"&sql&":调试"
set rs=conn.execute(sql)
补充:
请你粘贴上面调试语句输出的内容,粘贴以后你可能自己就能明白是什么原因
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询