hi, kann mir jemand diesen fehler erklären:
http://www.tiberian-sun.net/asdfghjkl.JPG
?
Ich sende folgendes:
Delphi-Quellcode:
procedure TForm2.Button2Click(Sender: TObject);
begin
Form1.c.HostName := Edit1.Text;
Form1.c.Port := StrToInt(Edit2.Text);
Form1.c.User := Edit3.Text;
Form1.c.Password := Edit4.Text;
Form1.q2.SQL.Clear;
Form1.q2.SQL.Add('CREATE DATABASE ' + Edit7.Text + ';');
Form1.q2.SQL.Add('USE ' + Edit7.Text + ';');
Form1.q2.SQL.Add('CREATE TABLE ' + Edit5.Text + ';');
Form1.q2.SQL.Add('CREATE TABLE ' + Edit6.Text + ';');
Form1.q2.SQL.Add('CREATE TABLE ' + Edit7.Text + ';');
Form1.q2.ExecSQL;
end;
ich wunder mich auch wieso es in der fehlermeldung nur buis "CREATE TABL" geht... ich hab doch mehr gesendet?