So sieht der Code aus:
Delphi-Quellcode:
// Tabelle autor anlegen
sSQL4 := 'CREATE TABLE autor ([idautor] INTEGER PRIMARY KEY NOT NULL,';
sSQL4 := sSQL4 + '[titel] VARCHAR (255),';
sSQL4 := sSQL4 + '[fk_nachname_id] INTEGER, FOREIGN KEY(fk_nachname_id) REFERENCES nachname(idnachname),';
sSQL4 := sSQL4 + '[fk_vorname_id] INTEGER, FOREIGN KEY(fk_vorname_id) REFERENCES vorname(idvorname));';
Die Fehlermeldung siehe Anlage ))
Mit einem FOREIGN KEY läuft aber alles ok.