我试图使用PreparedStatement批,但我有一个问题。
下面的代码不给我的错误,但它在表中插入只在地图的最后一个关键,我不知道为什么。
这将是肯定是一个非常愚蠢的错误,但是这是我第一次使用addBatch()方法..
Class.forName("com.mysql.jdbc.Driver");
this.connect = DriverManager.getConnection("jdbc:mysql://localhost/" + this.database + "?user=" + this.user + "&password=" + this.password);
String s;
for (String key : this.map.keySet())
{
s = ("insert into " + this.database + ".user (nickname) values (?)");
this.preparedStatement = this.connect.prepareStatement(s);
this.preparedStatement.setString(1, key);
this.preparedStatement.addBatch();
}
this.preparedStatement.executeBatch();
提前致谢!