vb中判断Access数据库是否为空的问题

vb中判断Access数据库是否为空的问题,第1张

do while not data1.recordset.eof

if isnull(data1.recordset!字段名) then

MsgBox "字段值为NULL"

endif

data1.recordset.movenext

loop

data1.recordset.movefist

要不你就写个SQL

"select * from 表名where 字段名 is null"

如果是在access数据库的窗体里写代码,if (expr) then *** else *** endif 语句可以用的。如果是sql语句里可以用IIf(expr, truepart, falsepart),如果不行,我想应该是你的表达式有问题吧。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9950663.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存