I am failing in creating tables via the PGadmin III SQL editor - even if the syntax is generated by the frontend:
CREATE TABLE testtable
(
id integer,
"name" character varying(100)
)
WITH (
OIDS = FALSE
)
;
Error message is in german, but basically says that there's supposed to be a syntax error..
FEHLER: Syntaxfehler bei »integer«
ZEILE 3: id integer,
^
********** Fehler **********
Any ideas ?