我使用 Access 数据库编写了一个 java 程序,我可以记录字符串值,但是我使用数字字段列为数字值编写的查询会生成一个 INSERT INTO 错误。以下是查询和错误。
Level - Col in table with number field
Access Insert Statement:
INSERT INTO SystemEquipment(Level) Values (12);
Error:
[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
**Tried to run the query with and without single quotes and semicolons