Es geht doch. Dazu im Kontextmenü der
Datenbank Tasks->Scripts generieren auswählen und im "Erweitert" Dialog auch auswählen, dass man Daten exportieren möchte. Nur wass Du mit TSQL in
FB anfangen willst.... Lieber die Variante mit der Stringlist (wenn die bei 1 Mio nicht überläuft).
Hier mal als Vorlage mein primitivst-QD:
Delphi-Quellcode:
procedure TForm1.ExtractData(ATableName: string);
function QuoteValue(AValue : string) : string;
begin
if pos(#33, AValue) > 0 then
result := StringReplace(AValue, #33, #33#33, [rfReplaceAll])
else
result := AValue;
end;
function BoolStr(AField : TField) : string;
begin
if AField.AsBoolean then
result := 'T'
else
result := 'F';
end;
var
i : integer;
LCount : integer;
LRecords : integer;
LLine : string;
LValue : string;
sl : TStringList;
begin
AdsQuery1.SQL.Text := 'Select * from '+ATableName;
sl := TStringList.Create;
try
AdsQuery1.Active := True;
LRecords := AdsQuery1.RecordCount;
ProgressBar1.Position := 0;
ProgressBar1.Step := 1;
ProgressBar1.Max := LRecords;
sl.Capacity := LRecords;
DecimalSeparator := '.';
LCount := AdsQuery1.FieldCount;
while not AdsQuery1.Eof do
begin
LLine := 'Insert into '+ATableName+' values(';
for i := 0 to LCount-1 do
begin
if AdsQuery1.Fields[i].IsNull then
LLine := LLine + 'null'
else
begin
case AdsQuery1.Fields[i].DataType of
ftDate : LLine := LLine + QuotedStr(FormatDateTime('yyyy-mm-dd', AdsQuery1.Fields[i].AsDateTime));
ftDateTime : LLine := LLine + QuotedStr(FormatDateTime('yyyy-mm-dd hh:nn:ss', AdsQuery1.Fields[i].AsDateTime));
ftTimeStamp : LLine := LLine + QuotedStr(FormatDateTime('yyyy-mm-dd hh:nn:ss.zzz', AdsQuery1.Fields[i].AsDateTime));
ftBoolean : LLine := LLine + QuotedStr(BoolStr(AdsQuery1.Fields[i]));
ftString :
begin
LValue := QuoteValue(AdsQuery1.Fields[i].AsString);
LLine := LLine + QuotedStr(LValue);
end;
else
LLine := LLine + AdsQuery1.Fields[i].AsString;
end;
end;
LLine := LLine + ', ';
end;
LLine := copy(LLine, 1, length(LLine)-2) + ');';
sl.Add(LLine);
AdsQuery1.Next;
if (sl.Count mod 101 = 0) or AdsQuery1.Eof then
sl.add('commit;');
ProgressBar1.StepIt;
end;
sl.SaveToFile(ATableName+'.sql');
finally
sl.Free;
AdsQuery1.Active := False;
end;
end;