Tag: 列计数

java.sql.SQLException:列计数与第1行的值计数不匹配

我的桌子的结构: id int AUTO_INCREMENT PRIMARY KEY title text url text age int 以下是我试图将数据保存到此表中的方法: PreparedStatement ps=con.prepareStatement("insert into table(title, url, age) values ('\"+title+\",\"+url+\",\"+age+\"')"); System.out.println("Connected database successfully.."); ps.executeUpdate(); 但是当我运行该应用程序,我得到 java.sql.SQLException:列计数与第1行的值计数不匹配 我猜这个问题可能在id列中,如何解决呢?