程序出错请大家帮忙(50分)

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

lingm

Unregistered / Unconfirmed
GUEST, unregistred user!
var
APP: TadoTable;
begin
APP := TAdoTable(self);
APP.assign(LinkDB.AdoTable1)
//出错 cannot assign a TAdoTable to a TFmain
....
APP.open;
....
APP.close;
APP.free;
end

程序写在fmain单元里,数据库连接在LinkDB里
 
起因:
http://www.delphibbs.com/delphibbs/dispq.asp?lid=2409020
 
APP := TAdoTable.create(nil);
 
>>>APP := TAdoTable(self);

改成 APP := TAdoTable.Create(nil);
 
出错 cannot assign a TAdoTable to a TAdoTable [:(]
 
顶一下[:D]
说一下起因:
把LinkDB.AdoTable1赋予APP
然后可以像APP.open或APP.colse这样使用
 
to lingm:你成功了没有?
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
I
回复
0
查看
849
import
I
I
回复
0
查看
622
import
I
后退
顶部