【发布时间】:2014-04-04 22:29:33
【问题描述】:
我有一个批处理程序,我使用 JDBC 来调用数据库。 我正在以 'ID' 作为主键以 100 个批次发送信息。
我想对数据库进行一次调用,然后在关闭连接之前执行多个 SQL 语句。
我发布部分代码供参考
// Database credentials
String USER = username;
String PASS = password;
Connection connec = null;
Statement stmt = null;
//STEP 2: Register JDBC driver
Class.forName("com.mysql.jdbc.Driver");
//STEP 3: Open a connection
System.out.println("Connecting to a selected database...");
connec = DriverManager.getConnection(DB_URL, USER, PASS);
System.out.println("Connected database successfully...");
//STEP 4: Execute a query
System.out.println("Creating statement...");
stmt = connec.createStatement();
// Step 2: To update the database with the new count and the netppe values.
// Step to know whether the ID is present or not in the database
for(int i=0;i<identities.length;i++){
String booleanString = "SELECT 1 FROM cgm_counters WHERE id = "+identities[i];
stmt.execute(booleanString);
ResultSet resultSet = stmt.getResultSet(); //result set for records
boolean recordFound = resultSet.next();
ResultSet rs = null;
// Retrieve the 'netppe' information.
if(recordFound){
String sql = "SELECT * FROM cgm_counters WHERE id="+identities[i];
rs = stmt.executeQuery(sql);
while(rs.next()){
//Retrieve by column name
double net_ppe = rs.getDouble("spend");
System.out.println("The value of the netppe :"+net_ppe);
}
}// end of 'If' statement
我想为 for 循环中的每个 ID 一次性做三件事。
1 > I want to see whether the ID is present or not in the database
2 > If ID - present
{
2 a > retrieve the 'netppe' information for that particular ID
2 b > retrieve the 'count' information for that same ID
2 c> Update the database with the new 'netppe' and 'count' value for the same ID
} else {
Insert the information for the new ID
}
如何在不关闭每个ID的连接的情况下执行所有语句? JDBC 和 SQL 的新手。任何帮助表示赞赏。
【问题讨论】:
-
为什么需要关闭每个 id 的连接?你不是已经有不关闭连接的代码吗?
-
@eis 删除了 'rs.close()' 语句,如果我不关闭连接并执行多个语句,相同的步骤是否有效?
-
@user3188390 关闭结果集与关闭数据库连接有何关系?
标签: java mysql sql sql-server batch-file