Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用此代码插入时,我总是遇到异常:
String add="insert into kategorie kategorie values ?"; PreparedStatement addKategorie=db.prepareStatement(add); addKategorie.setString(1,kategorie);
我的插入语法有什么问题?
(使用准备好的语句插入名为 kategorie 的表和名为 kategorie 的列(值=?)
提前致谢
您的查询应如下所示:
insert into kategorie(kategorie) values (?)
尝试 insert into kategorie (kategorie) values ?
insert into kategorie (kategorie) values ?
因为插入的正确语法是
INSERT INTO table_name (column1, column2, column3,...) VALUES (value1, value2, value3,...)