D5中的null与D6中的null在使用上有什么不同吗?(40分)

  • 主题发起人 主题发起人 城里的月饼
  • 开始时间 开始时间

城里的月饼

Unregistered / Unconfirmed
GUEST, unregistred user!
if Table1.fieldbyname('num').value<>null then

begin
.....
end;
在D6中报错,在D5中好用。
错误提示是:Undeclared identifier 'null'
 
d6需要引用variants单元
一般这么用
if varisnull(Table1.fieldbyname('num').value) then
 
太奇怪了
我这边不会错
 
可能你用的ADO吧?
 
接受答案了.
 
后退
顶部