if isnull(rs.fields(2)) then
m="空值"
else
m=rs.fields(2)
end if
最简单的办法是:
trim(rs.fields(2) &"")
在读取数据库表的时候,先判断表是否为空就行了:......
if data1.recordset.bof and data1.recordset.eof then
msgbox "当前数据表为空!"
exit sub
end if
......
......
欢迎分享,转载请注明来源:内存溢出
if isnull(rs.fields(2)) then
m="空值"
else
m=rs.fields(2)
end if
最简单的办法是:
trim(rs.fields(2) &"")
在读取数据库表的时候,先判断表是否为空就行了:......
if data1.recordset.bof and data1.recordset.eof then
msgbox "当前数据表为空!"
exit sub
end if
......
......
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)