X
xielei
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个程序想要把一个临时数据库里面的所有的记录都保存到总的数据库里面去。
代码如下;
var
sl, fs : integer ;
s , sql: String;
start : integer;
begin
sl := 1 ;
sql := 'select count(sfzh) as reczs from "swy.dbf"';
DataMod.qrycnt.Close;
DataMod.qrycnt.SQL.Clear;
DataMod.qrycnt.SQL.Add(sql);
DataMod.qrycnt.Open;
printDlg.Edit1.Text:=inttostr(DataMod.qrycntreczs.AsInteger);
fs:=strtoint(printDlg.Edit1.Text);
DataMod.qrycnt.close;
while (sl <= fs) and (not DataMod.gjswsTb.Eof) do
begin
DataMod.gjswsTb.Post;
DataMod.gjswsTb.Next;
sl:=sl+1;
end;
但是程序没有通过,不知道那位数据库高手肯帮忙!先谢过!
代码如下;
var
sl, fs : integer ;
s , sql: String;
start : integer;
begin
sl := 1 ;
sql := 'select count(sfzh) as reczs from "swy.dbf"';
DataMod.qrycnt.Close;
DataMod.qrycnt.SQL.Clear;
DataMod.qrycnt.SQL.Add(sql);
DataMod.qrycnt.Open;
printDlg.Edit1.Text:=inttostr(DataMod.qrycntreczs.AsInteger);
fs:=strtoint(printDlg.Edit1.Text);
DataMod.qrycnt.close;
while (sl <= fs) and (not DataMod.gjswsTb.Eof) do
begin
DataMod.gjswsTb.Post;
DataMod.gjswsTb.Next;
sl:=sl+1;
end;
但是程序没有通过,不知道那位数据库高手肯帮忙!先谢过!