I am trying to use SQL to create a table in my database with the Java DBMS I keep getting this error
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in field definition.
So I think it is not in my java code but the issue is actually in my SQL query, I have tried several variations but I still can't seem to get it to execute
.
Code:
CREATE TABLE someTable(key VARCHAR PRIMARY KEY(20), someField VARCHAR(20), someOtherField VARCHAR(500), someReallyBigField MEMO)
Thanks for your help I really appreciate the time!