我使用Jpanel,当我输入文本字段值时说c1和c2。 这些值存储在row [0]和row [1]中,应该在我的sql语法中作为列名和值传递。
我写的是这样的:
String queryco = "Insert into table(?) values (?)";
pst = conn.prepareStatement(queryco);
String c1 = (String)table.getValueAt(row, 0);
String c2 = (String)table.getValueAt(row, 1);
pst.setString(1, c1);
pst.setString(2, c2);
pst.addBatch();
我只是一个初学者,不确定这是否有效。 我怎样才能编写INSERT语法?