如何通过 insert into 语句向sql 数据表中添加图像字段,JPG格式的(50)

  • 主题发起人 主题发起人 libaoliang
  • 开始时间 开始时间
L

libaoliang

Unregistered / Unconfirmed
GUEST, unregistred user!
如何通过 insert into 语句向sql 数据表中添加图像字段,JPG格式的
 
大概是这样的,方法还很多,自己摸索。 With TADOQuery.Create(Nil) Do Begin Try Connection := ADOConnection1; SQL.Clear; SQL.Add('insert into img(img) Values(:s0)'); With Parameters Do Begin Clear; CreateParameter('s0', ftBlob, pdinput, 16, '').LoadFromFile('C:/boot.ini', ftBlob); End; ExecSQL; Finally Free; End; End;
 

Similar threads

回复
0
查看
978
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
后退
顶部