利用表BI2的数据更新表BI1的数据,UpData语句这样写为什么不行?(100分)

  • 主题发起人 主题发起人 旺族
  • 开始时间 开始时间

旺族

Unregistered / Unconfirmed
GUEST, unregistred user!
代码:
提示出错为:‘操作必须使用一个可更新的查询!’
我用的是Delphi + Access + ADO.
表的结构:
BI1,BI2 均为: 序号,项目,第一年,第二年。。

procedure TFormAssetEvaluate.DBGridEh1ColExit(Sender: TObject);
var
str1,str2 : string;
begin

Str1 := TreeviewTable.Selected.Text;
str2:= Copy(str1, 1, Pos(' ', str1) - 1);
if str2 = 'BI2' then

begin

with QInUp do

begin

Close;
SQL.Clear ;
if Str2 = 'BI1' then
exit;
SQL.Add('update BI1 set 第一年 = (select Sum(第一年) from BI2) where 序号 = 1');
ExecSQL;
end;

end;

end;

[?]
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
911
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
888
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部