如何判断access数据库中的ole字段是否为空值?(10分)

  • 主题发起人 主题发起人 hnhsh
  • 开始时间 开始时间
H

hnhsh

Unregistered / Unconfirmed
GUEST, unregistred user!
用delphi编程时,如何判断access数据库中的ole字段内容是否为空?
 
将值取出来,存在一个MemeryStream中,判断其大小不行么?
 
使用IsNull
DataSet.FieldByName('BLOB Field').IsNull

用SQL语句
Select IsNull([Blob Field]) From Table
 
谢谢楼上的二位!
 
后退
顶部