Hallo Tester 8)
natürlich wenn Du schon diese Tabelle hast... kannst diese nicht noch einmal anlegen.
Darum musst Du diese zuerst löschen z.B. so:
Code:
with Form1.Query1 do
begin
if active then
close;
with
SQL do
begin
clear;
Add('DROP TABLE ' + #39 + 'test_db' + #39);
end
try
ExecSQL;
except
end
end;
Gruß
Paul Jr.