Fast way to insert 100k records to Firebird
Posted: Thu 06 Nov 2008 11:38
i'm using Unidac to connect to FireBird.
i want to import other data from text to Firebird database, about 100k records.
If use normal way it same too slow
i current using
for I := 0 to recordcount do
begin
UniQuery1.SQL.Text:= (sqlstr);
UniQuery1.Execute;
end;
Is there other way to do it faster .?
Thank
i want to import other data from text to Firebird database, about 100k records.
If use normal way it same too slow
i current using
for I := 0 to recordcount do
begin
UniQuery1.SQL.Text:= (sqlstr);
UniQuery1.Execute;
end;
Is there other way to do it faster .?
Thank