如何能够及时刷新QUERY  ?(50分)

  • 主题发起人 主题发起人 wc
  • 开始时间 开始时间
W

wc

Unregistered / Unconfirmed
GUEST, unregistred user!
我在程序中
With Query_out do
begin
Close;
SQL.Clear;
SQL.Add('INSERT INTO come VALUES('11')');
ExecSQL;
end;
后,无法让Query_out的Active为true
也就不能让DBGrid及时显示
怎么办!
用的是ACCESS数据库,用ODBC
 
你的Query_out是用来做insert 数据库的,当然不能用来显示数据库了,改为如下试试:
With Query_play do
begin
Close;
SQL.Clear;
SQL.Add('select * from come);
prepare;
open
end;
With Query_out do
begin
Close;
SQL.Clear;
SQL.Add('INSERT INTO come VALUES('11')');
ExecSQL;
Query_play.close;
Query_play.open;
end;
dbgrid 的数据源连着Query_play,就可以实时显示你增加的数据了
 
是啊,我急晕了,已经搞定了,谢谢
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
594
import
I
I
回复
0
查看
687
import
I
I
回复
0
查看
3K
import
I
后退
顶部