[求助]数据库查询问题
我的查询页面显示如下的错误,请那位高手帮我看哈,谢谢了!
技术信息(用于支持人员)
错误类型:
ADODB.Recordset (0x800A0BB9)
参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。
/1/chaxun.asp, 第 60 行
代码如下:
<%
tiaojian=trim(request.form("tiaojian"))
chaxun=trim(request.form("chaxun"))
select case tiaojian
case "zuozhe"
sql="select *from fagaoguanlixinxi where zuozhe='"&chaxun&"'"
case "zhongwentimu"
sql="select *from fagaoguanlixinxi where zhongwentimu='"&chaxun&"'"
end select
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,3,1 //显示此处出错。
%>
<% if rs.bof and rs.eof then
response.write("此文章不存在!")
response.end
end if
%>