Hello everybody.
I'm trying to create a table in an Access database via SQL.
When I enter something like this, everything works fine:
CREATE TABLE tblExample (
id INTEGER PRIMARY KEY NOT NULL,
txtBla TEXT NOT NULL,
intFoo INTEGER NOT NULL
)
BUT when I enter this, I get a Syntax...