对象'Refresh'的方法'IAdodc'失败

使用VB访问SQLSERVER出现错误提示貌似是adouser.refresh那里有问题PrivateSubcmdok_Click()'数据有效性检查Iftxtusern... 使用VB访问SQL SERVER 出现错误提示 貌似是adouser.refresh那里有问题
Private Sub cmdok_Click()
'数据有效性检查
If txtusername = "" Then
MsgBox "请输入用户名", , "登录"
txtusername.SetFocus
Exit Sub
End If
If txtpwd = "" Then
MsgBox "请输入密码", , "登录"
txtpwd.SetFocus
Exit Sub
End If
'判断用户名是否存在
adouser.RecordSource = "select * from users where username= " _
& Trim(txtusername) & " "
adouser.Refresh
If adouser.Recordset.EOF = True Then
MsgBox "用户名不存在", , "登录"
trytimes = trytimes + 1
If trytimes >= 3 Then
MsgBox "已经三次尝试未成功,本系统将关闭", , "登录"
End
Else
Exit Sub
End If
End If
'判断密码是否正确
If Trim(adouser.Recordset.Fields("password")) <> Trim(txtpwd) Then
MsgBox "密码错误", , "登录"
tyrtimes = trytimes + 1
txtpwd.SelStart = 0
txtpwd.SelLength = Len(txtpwd)
txtpwd.SetFocus
If trytimes >= 3 Then
MsgBox "已经三次尝试未成功,本系统将关闭", , "登录"
End
Else
Exit Sub
End If
Else
strusername = Trim(txtusername)
Unload Me
End If
已经加上单引号了 还是提示错误
展开
 我来答
hejiajie1984
2009-06-03 · TA获得超过169个赞
知道答主
回答量:39
采纳率:0%
帮助的人:0
展开全部
检查你的douser连接器的RecordSource是否为table类型,如果是的话改为rs记录集形式。

如果你想偷懒只追求结果的话,在开头加一句on error resume next 让vb帮你忽略错误,但这不是好习惯。
murphybao
2009-06-02 · TA获得超过1210个赞
知道小有建树答主
回答量:1002
采纳率:66%
帮助的人:527万
展开全部
adouser.RecordSource = "select * from users where username= " _
& Trim(txtusername) & " "
->
adouser.RecordSource = "select * from users where username= '" _
& Trim(txtusername) & "'"
用户名两边加单引号

检查adouser对象关联的Connection对象,或adouser对象的ConnectionString设置,确保能够成功连接数据库 ,然后再检查SQL问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
茂烟f
2009-06-02 · TA获得超过329个赞
知道小有建树答主
回答量:666
采纳率:0%
帮助的人:650万
展开全部
If adouser.Recordset.EOF = True Then

改用
If adouser.Recordset.BOF or adouser.Recordset.EOF Then
试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式