L
lbd88488848
Unregistered / Unconfirmed
GUEST, unregistred user!
var oc,sql:variant;
begin
oc:=createoleobject('adodb.connection');
sql:=oconn.execute('select top 1 * from phototable');
if not sql.eof then
begin
在此处得到图像为sql.fields['photo'].value但显示出来的不是图像.
end
end;
我使用adoquery控件得到的adoquery1.fieldvalues['photo']却可以显示图像。
请问这是为何,如果不使用adoquery,而使用上面的方法,如何才能正确地显示图像。
谢谢!
begin
oc:=createoleobject('adodb.connection');
sql:=oconn.execute('select top 1 * from phototable');
if not sql.eof then
begin
在此处得到图像为sql.fields['photo'].value但显示出来的不是图像.
end
end;
我使用adoquery控件得到的adoquery1.fieldvalues['photo']却可以显示图像。
请问这是为何,如果不使用adoquery,而使用上面的方法,如何才能正确地显示图像。
谢谢!