ASP连接数据库出现游标冲突错误,不知道如何解决
由于不是在自己工作的电脑上,我写上该程序的核心程序段,帮忙看下,很多都是参考书上的程序dim conn
dim strstudent
dim connstr
set conn=server.createobject("adodb.connection")
set strstudent=server.createobject("adodb.recordset")
connstr="provider=sqloledb; library=local; catalog=student; uesr id=sa;password=;"
conn.open connstr
strstudent.open "select * from usebase",conn,3,3
strstudent.addnew
strstudent("username")=request.form("username")
strstudent("password")=request.form("password")
strstudent.update --出错的地方,游标冲突
大致代码就是这样了,可能这里拼写会有点错误,但是在自己程序里没问题,出错误的地方就是最后行游标冲突,但是奇怪的是数据的确更新了,但是程序运行到strstudent.update这句就出现错误,下面的程序就执行不下去了,初学ASP,对于数据库也不是很了解,查阅可能是权限问题,我用的是SA,应该具有全部权限才对,可能是因为锁定,出现锁定冲突,但是就我一人使用也不该出现这样的错误,不知道有没有人也遇到这样的问题,请有经验的人告诉我下这里的错误,谢谢