Hello again everybody!
This time I'm having a little problem creating tables through MS Visual C# 2005 Express Edition's
(MSVCS2005EE?) query designer, this is the query when I write it:
CREATE TABLE materias(materia_id INTEGER PRIMARY KEY AUTOINCREMENT, codigo CHAR(6), nombre VARCHAR(15));
When I hit the Run Query command, an SQL Execution error appears, saying that there's an error near "[AUTOINCREMENT]".
When I close the error dialog, I see that my query has changed to (changes in red):
CREATE TABLE materias(materia_id INTEGER PRIMARY KEY [AUTOINCREMENT], codigo CHAR(6), nombre VARCHAR(15));
I am working around this using the command line tool when I can, or running the queries from a separate application, but I would like to know why those square brackets appear around AUTOINCREMENT.
Thank you very much.