gpt4 book ai didi

java - statement.executeBatch() 与 statement.updateQuery() 当只有一个查询被执行时

转载 作者:行者123 更新时间:2023-11-29 01:28:33 29 4
gpt4 key购买 nike

好的,我知道批处理 允许将相关的 SQL 语句分组到一个批处理中,并通过对数据库的一次调用来提交它们。一次向数据库发送多个 SQL 语句时,可以减少通信开销,从而提高性能。在这种特殊情况下(见下面的代码)我不认为批处理是唯一的目的。因为 stmt.executeBatch() 在添加批处理后立即被调用(?) stmt.executeUpdate() 不会做同样的事情吗?

public void tableChanged(TableModelEvent e) {
int row = e.getFirstRow();
int col = e.getColumn();
model = (MyTableModel) e.getSource();
String stulpPav = model.getColumnName(col);
Object data = model.getValueAt(row, col);
Object studId = model.getValueAt(row, 0);
System.out.println("tableChanded works");
try {
new ImportData(stulpPav, data, studId);
bottomLabel.setText(textForLabel());
} catch (ClassNotFoundException e1) {
e1.printStackTrace();
} catch (SQLException e1) {
e1.printStackTrace();
}
}
public class ImportData {

public ImportData(String a, Object b, Object c)
throws ClassNotFoundException, SQLException {
Statement stmt = null;
try {
connection = TableWithBottomLine.getConnection();
String stulpPav = a;
String duom = b.toString();
String studId = c.toString();
System.out.println(duom);
connection.setAutoCommit(false);
stmt = connection.createStatement();
stmt.addBatch("update finance.fin set " + stulpPav + " = " + duom
+ " where ID = " + studId + ";");
stmt.executeBatch();
connection.commit();
} catch (BatchUpdateException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally {
if (stmt != null)
stmt.close();
connection.setAutoCommit(true);
System.out.println("Data was imported to database");
}
}
}

最佳答案

在这种情况下使用批处理根本没有优势。它甚至可能比直接 executeUpdate 引入额外的开销(但这取决于驱动程序和数据库)。

但是,不要假设批处理对所有 JDBC 驱动程序都有优势。我没有查看 MySQL 的细节,但我知道有 JDBC 驱动程序,其中内部批处理是批处理中每个语句的正常执行。

然而,您问题中的代码有一个更大的问题:它容易受到 SQL 注入(inject)的攻击。<​​/p>

关于java - statement.executeBatch() 与 statement.updateQuery() 当只有一个查询被执行时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27541951/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com