请问在delphi中如何判断在sqlserver库中的图像字段有或没有图像(30分)

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

fsxusuh

Unregistered / Unconfirmed
GUEST, unregistred user!
各位高手:
请问在delphi中如何判断在sqlserver库中的图像字段有或没有图像.
谢谢!
fsxusuh@mail.fsptt.ln.cn
2000.09.26
 
用下面这个判断试试
if Table1.FieldByName('Field1').IsNull then
Showmessage('无图象')
else
Showmessage('有图象');
 
if TalbleField.value = Null then
Showmessage('无图像')
else
Show message('有图像');
 
agree with wangjerry
 
接受答案了.
 
后退
顶部