如何判断数据库中字段类型为bytes的字段,是否为空.(0分)

  • 主题发起人 主题发起人 fant
  • 开始时间 开始时间
F

fant

Unregistered / Unconfirmed
GUEST, unregistred user!
如何判断数据库中字段类型为bytes的字段,是否为空.
 
由设计时决定
 
if Query1.FieldbyName('字段').DataType in
[ftBytes,ftSmallint, ftInteger, ftWord, ftFloat, ftCurrency] then
 
if Query1.FieldbyName('字段').DataType in [ftBytes]
if query1.FieldByName('字段').IsNull
 
后退
顶部