vb如何查询数据库记录是否存在

我用的是adodc控件Ado3.RecordSource="select*from借出记录where编号='"+Text1.Text+"'"IfText1.Text=""... 我用的是adodc控件
Ado3.RecordSource = "select * from 借出记录 where 编号='" + Text1.Text + "'"
If Text1.Text = "" Then
Text4.Text = ""
Text2.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Chk1.Value = 0
Else
Ado3.Refresh
Text4.Text = Ado3.Recordset.Fields("名称")
Text2.Text = Ado3.Recordset.Fields("读者编号")
Text5.Text = Ado3.Recordset.Fields("条形码")
Text6.Text = Ado3.Recordset.Fields("应还日期")
Text7.Text = Ado3.Recordset.Fields("押金")
End If

当点击按钮后实行查询,并把字段数据输出到文本框中,但如果记录不存在则会出错,请问该如何补充?
展开
 我来答
zq85426
2010-06-01 · 超过13用户采纳过TA的回答
知道答主
回答量:101
采纳率:0%
帮助的人:28.6万
展开全部
Ado3.RecordSource = "select * from 借出记录 where 编号='" + Text1.Text + "'"
Ado3.Refresh
if rs.eof = true then
Text4.Text = Ado3.Recordset.Fields("名称")
Text2.Text = Ado3.Recordset.Fields("读者编号")
Text5.Text = Ado3.Recordset.Fields("条形码")
Text6.Text = Ado3.Recordset.Fields("应还日期")
Text7.Text = Ado3.Recordset.Fields("押金")
else
Text4.Text = ""
Text2.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Chk1.Value = 0
Else
End If
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fyfking
2010-06-03 · 超过22用户采纳过TA的回答
知道答主
回答量:120
采纳率:31%
帮助的人:40.9万
展开全部
Ado3.RecordSource = "select * from 借出记录 where 编号='" + Text1.Text + "'"
if not rs.eof then
If Text1.Text = "" Then
Text4.Text = ""
Text2.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Chk1.Value = 0
Else
Ado3.Refresh
Text4.Text = Ado3.Recordset.Fields("名称")
Text2.Text = Ado3.Recordset.Fields("读者编号")
Text5.Text = Ado3.Recordset.Fields("条形码")
Text6.Text = Ado3.Recordset.Fields("应还日期")
Text7.Text = Ado3.Recordset.Fields("押金")
End If
else
response.write "没有该记录!"
end if
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2ca1c0f24
2010-05-30 · TA获得超过2036个赞
知道大有可为答主
回答量:4364
采纳率:0%
帮助的人:3405万
展开全部
Ado3.RecordSource = "select * from 借出记录 where 编号='" + Text1.Text + "'"
If Text1.Text = "" Then
Text4.Text = ""
Text2.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Chk1.Value = 0
Else
Ado3.Refresh
If Not Ado3.Recordset.EOF Then
Text4.Text = Ado3.Recordset.Fields("名称")
Text2.Text = Ado3.Recordset.Fields("读者编号")
Text5.Text = Ado3.Recordset.Fields("条形码")
Text6.Text = Ado3.Recordset.Fields("应还日期")
Text7.Text = Ado3.Recordset.Fields("押金")
Else
MsgBox"记录不存在!"
End If
End If
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
stzcw
2010-05-30 · TA获得超过236个赞
知道小有建树答主
回答量:259
采纳率:0%
帮助的人:0
展开全部
Ado3.RecordSource = "select * from 借出记录 where 编号='" + Text1.Text + "'"
If Text1.Text = "" Then
Text4.Text = ""
Text2.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Chk1.Value = 0
Else
Ado3.Refresh
if not ado3.recordset.eof then
Text4.Text = Ado3.Recordset.Fields("名称")
Text2.Text = Ado3.Recordset.Fields("读者编号")
Text5.Text = Ado3.Recordset.Fields("条形码")
Text6.Text = Ado3.Recordset.Fields("应还日期")
Text7.Text = Ado3.Recordset.Fields("押金")
end if
End If
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9260c4507
2010-05-30 · TA获得超过2328个赞
知道大有可为答主
回答量:3736
采纳率:0%
帮助的人:2399万
展开全部
加个条件
Ado3.Recordset.recordcount>0
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式