I am trying to use SQL to create a table in my database with the Java DBMS I keep getting this error
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 executejava.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in field definition..
Thanks for your help I really appreciate the time!Code:CREATE TABLE someTable(key VARCHAR PRIMARY KEY(20), someField VARCHAR(20), someOtherField VARCHAR(500), someReallyBigField MEMO)


.
Reply With Quote


