麻烦各位帮忙解决一个问题!
<html>
<head>
<title>操作数据</title>
</head>
<body>
<%
on error resume next
Dim ConnStr,myConn,mySQL
ConnStr="Provider=SQLOLEDB;data source=(local);initial catalog=图书馆管理系统;user id=sa;password=;" Set myConn=Server.CreateObject ("ADODB.Connection")
Myconn. ConnectionString=ConnStr
myConn.open
myConn.BeginTrans
mySQL="update 学生信息表 set 姓名='小章' where 学号='0002'"
myConn.Execute mySQL
mySQL="update 学生信息表 set 性别='女' where 学号='0002'"
myConn.Execute mySQL
if err.number>0 then
myConn.RollbackTrans
else
myConn.CommitTrans
end if
response.write "操作成功"
myConn.close
set myConn=nothing
%>
</body>
</html>
我想问一下代码中的
on error resume next 是什么意思?