如何判断RecordSet中的某个字段为空!在线等
各位大侠,如何判断RecordSet中的某个字段为空!
if rs( "字段名 ") is null then
end if
这样行吗?
[解决办法]
If IsNull(rs( "字段名 ")) THEN
ENDIF
[解决办法]
IsNull(rs.fields(0).value)=True
[解决办法]
对,用isnull()来判断
[解决办法]
isnull() 就可以直接判断了
返回true or false
没有必要用其他的了