|
请问下一个问题,进销存系统 中去判断用户名和密码是否存在以及正确,其中一个句
谢谢!
fwbook,请问下一个问题
进销存系统 中去判断用户名和密码是否存在以及正确,其中一个句
rs.Open "select * from [user] where name = '" & Trim(suser) & "' and password= '" & Trim(spassword) & "'", sqlconnection
If rs.RecordCount = 1 Then
checkuser = True
Else
checkuser = False
End If
If rs.RecordCount = 1 Then 不知道是什么意思?想很久也去网站查也不到是什么意思?请指点!! |
|