当前位置:Gxlcms > ASP > asp向数据库插入数据的方法rs

asp向数据库插入数据的方法rs

时间:2021-07-01 10:21:17 帮助过:44人阅读

Set objRs = Server.CreateObject("Adodb.Recordset")
mysql = "select sname from [users] where sname = '"&sname&"'"
objRs.open mysql,objConn,1,3

If objRs.Bof Or objRs.Eof Then
 objRs.addnew
 objRs("sname") = sname
 objRs.update
Else
 call salert("该用户已经存在,不可以注册")
End If

人气教程排行