This Domain(Admin5.com) is for Sale:

用ado在access存取二进制文件的一种办法

时间:2007-12-23  来源:不详  作者:迈克DB

在access中建一个备注字段,名为binary。
主键id。
有一timage已装载的图片。memstream为tmemorystream;p为byte
存:

self.Image1.Picture.Bitmap.SaveToStream(memstream);

memstream.seek(0,soFromBeginning);
while memstream.Position<memstream.Size do
begin
memstream.ReadBuffer(p,1);
i:=length(inttostr(p));
self.ADODataSet1.Recordset.Fields[1].AppendChunk(inttostr(i) inttostr(p));


end;
self.ADODataSet1.Recordset.UpdateBatch(1);

取:
with self.ADODataSet1 do
begin

本文来自织梦

while i< recordset.Fields[1].ActualSize do
begin

织梦内容管理系统

copyright dedecms

l:=strtoint(recordset.Fields[1].GetChunk(1));

本文来自织梦

m:=recordset.Fields[1].GetChunk(l);
i:=i 2*l 2;

try
b:=strtoint(m);
memstream.Write(b,1);
except
begin
showmessage(inttostr(l));
end;
end;

copyright dedecms


end;
end; dedecms.com

memstream.Seek(0,soFromBeginning);
self.Image1.Picture.Bitmap.LoadFromStream(memstream);

内容来自dedecms

  

看完这篇,您有何感觉呢?

文章评论

共有位Admini5网友发表了评论 查看完整内容

24小时热门信息