jupp es lag am primary key
folgendes statment funktioniert bei mir
SQL-Code:
Create Table If Not Exists TestDB.TestTab3 (
LfdNr Integer Auto_Increment,
Primary Key (LfdNr)
)
aber eins muss ich sagen mein handbuch is zum kotzen!!!!
die schreiben paar seiten vorher das die angabe von nem primary key so aussehen muss
SQL-Code:
Create Table If Not Exists TestDB.TestTab4 (
Feld1 Integer Primary Key
)
und das die angabe in klammer wie im beispiel mit dem auto_increment net funktionert
ich bin jetzt leicht verwirrt!!!!