dbimage的问题(20分)

Z

zjting

Unregistered / Unconfirmed
GUEST, unregistred user!
小菜我编了一个delphi5+sql server数据库的软件,遇到一个到怪问题,还请各位高手赐教:
数据库在存放图片的字段为image类型,form中通过DBimage来显示或输入。通过DBimage
可以很好地load一幅图片,也很好地显示图片,可是,当记录输入其它信息而没有load图片时,保存时出现stream error
的错误。这是什么问题哦?请您指教!我等着。
 
怎么没有人回答呢,
 
存盘代码有错
 
把你如何加载图片的代码也贴出来看看。
 
to zhilon
我的存盘代码:
procedure TForm1.ApplyButtonClick(Sender: TObject);

begin
with CustomerQuery do
begin
Database1.StartTransaction;
try
ApplyUpdates; {try to write the updates to the database};
Database1.Commit; {on success, commit the changes};
except
Database1.Rollback; {on failure, undo the changes};
raise; {raise the exception to prevent a call to CommitUpdates!}
end;
CommitUpdates; {on success, clear the cache}
end;

end;
 
顶部