Andrey Maximenko. Ukraine
Member²
I want to export from DOA to paradox.db
Now I have:
But this code works too slow.
-----------------------------------------
TBachMove works with TBDEDataSet only.
------------------------------------------
Has anybody other idea?
Now I have:
Code:
while not OracleQuery1.Eof do begin
Table1.Append;
for i := 0 to Table1.fields.Count-1 do begin
Table1.Fields[i].Value := OracleQuery1.Field(i);
end;
Table1.Post;
OracleQuery1.Next;
-----------------------------------------
TBachMove works with TBDEDataSet only.
------------------------------------------
Has anybody other idea?