......
if data1.recordset.bof and data1.recordset.eof then
msgbox "当前数据表为空!"
exit sub
end if
......
......
有问题,缺数据源,Constr = "Provider=Microsoft.Jet.OLEDB.4.0Persist.Security Info=FalseData Source=" &Server.MapPath("数据库名称")
rs.Open sql, cn, adOpenForwardOnly, adLockOptimisticif rs.eof then
'记录为空处理
msgbox "记录为空"
else
'有记录
end if
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)