怎样判断数据库中某一整形字段是否为空?(25分)

  • 主题发起人 主题发起人 lukee
  • 开始时间 开始时间
L

lukee

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi6,paradox。

我要读取一个整形字段的值
table_information.fieldbyname('aci_column1').value,但它可能为空值。
我用“if table_information.fieldbyname('aci_column1').value=Null then”不行,
delphi6不认。

我该怎么判断?
 
在SQL中用 field is null
 
用if table_information.fieldbyname('aci_column1').asinteger='' then
 
if table_information.fieldbyname('aci_column1').IsNull then
 
多人接受答案了。
 
后退
顶部