sql2000下数据不能更新操作
近期将acc升级为sql2000
把主键这些都手动设置了,增量三主键ID改为int,增量设为1
其他一些常见的地方都作了修改,acc转为sql2000,数据库文件增大了大概30多M,原来为70多M
目前运行速度明显慢于acc.
还有一些常见的操作不能操作,比如
Set Rs = server.createobject("ADODB.Recordset") Sql = "select top 50 EditDate from Tbl where ValidityDate > '"& TodayDate &"' and IsPause = '0'order by EditDate desc" Rs.Open Sql , Conn , 3 , 2If Rs.Eof and Rs.Bof Then Response.Write("无符合条件的信息!") Response.End()else do while not rs.eof Rs("EditDate")=Qsite.FormatDate(Now())'出错在这行 Rs.update rs.movenext loopEnd IfRs.Close