在我的数据库中我有1列,我对她的ArrayList进行调解,一切正常。
for(LatLng s : list1)
{
String sql = "INSERT INTO table1 VALUES('"+s+"')";
stmt.executeUpdate(sql);
}
现在我想要另一栏" ID"使用auto increment
,我在phpmyadmin
中进行此操作
姓名ID
,使用int
输入auto increment
但现在有了2栏,我的方法没有用
我做错了什么?
答案 0 :(得分:1)
如果您有多个列,则应指明列名
"INSERT INTO table1 (your_column_name) VALUES('"+s+"')"