数据读取器的空检查有什么问题
c.Open()
r = x.ExecuteReader
If Not r("filename").IsDbnull Then
imagepath = "<img src='images/'" & getimage(r("filename")) & " border='0' align='absmiddle'"
End If
c.Close()
r.Close()
我也尝试过;
If r("filename") Is DBNull.Value Then
imagepath = String.Empty
Else
imagepath = "<img src='images/'" & getimage(r("filename")) & " border='0' align='absmiddle'"
End If
c.Close()
r.Close()
错误是:不存在数据时尝试读取无效。
我的代码的想法是仅在数据可用时构建 img src 字符串。
非常感谢帮助。
谢谢
c.Open()
r = x.ExecuteReader
If Not r("filename").IsDbnull Then
imagepath = "<img src='images/'" & getimage(r("filename")) & " border='0' align='absmiddle'"
End If
c.Close()
r.Close()
I have also tried;
If r("filename") Is DBNull.Value Then
imagepath = String.Empty
Else
imagepath = "<img src='images/'" & getimage(r("filename")) & " border='0' align='absmiddle'"
End If
c.Close()
r.Close()
The error is: Invalid attempt to read when no data is present.
The idea of my code is to build an img src string only when data is available.
Help greatly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要调用
Read
方法。You need to call the
Read
method on yourSqlDataReader
before data is available for reading.需要首先调用
Read
方法。The
Read
method needs to be called first.如果运行查询后 DataReader 中有 0 行,则根本没有字段,因此您无法将它们与 null 进行比较。
您可以使用
if r.HasRows then //got data ... 来检查这一点
If there are 0 rows in the DataReader after the query is run, there will be no fields at all so you can't compare them to null.
You can check for this with
if r.HasRows then //got data ...