毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

对象关闭时,不允许操作

更新时间:2012-9-5:  来源:毕业论文

代码如下:

if request("usertype")=" " then 
  usertype=" "
else
  usertype=request.Form("usertype")
end if
dim conn,rs,sql
dim index
Set conn = Server.CreateObject("ADODB.Connection")
DBPath = Server.MapPath("db/xxdb.mdb")
conn.Open "provider=microsoft.jet.oledb.4.0;data source=" & DBPath

Set rs = Server.CreateObject("ADODB.Recordset")
if usertype="sales" then
  index=0
Set rs=conn.execute("Select * from login where salesname is not null")

elseif … …
elseif … …
elseif … …
end if

… …

<%
if request("usertype")<>" " then 
do until rs.EOF %>

Set rs = Server.CreateObject("ADODB.Recordset")
if usertype="sales" then
  index=0
Set rs=conn.execute("Select * from login where salesname is not null")
这里明显有错误啊

rs设置2次明显有问题

conn.execute(sql)常常用在更新或者删除里,而你的是用在筛选里,这很少见(因为没什么作用)
如果我没理解错的话,你是想按条件来打开数据库,所以你应该把
Set rs=conn.execute("Select * from login where salesname is not null")
改成:
Rs.open "Select * from login where salesname is not null",Conn,1,1

这样下面的elseif条件里都可以分别按条件打开不同的数据库:
elseif
Rs.open "Select * from xxxxx",Conn,1,1
elseif
Rs.open "Select * from xxxxx",Conn,1,1
............
那么下面判断rs.EOF时就不会出错了。

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。