我有一个准备好的合并语句,执行后它总是返回-2。
我的代码:
private StringBuilder sb = new StringBuilder();
sb.append("MERGE INTO EMP_BONUS EB USING (SELECT 1 FROM DUAL) on (EB.EMP_id = ?) WHEN MATCHED THEN UPDATE SET TA =?,DA=?,TOTAL=?,MOTH=?, NAME=? WHEN NOT MATCHED THEN "
+ "INSERT (EMP_ID, TA, DA, TOTAL, MOTH, NAME)VALUES(?,?,?,?,?,?) ");
public void executes(String threadName) throws Exception {
ConnectionPro cPro = new ConnectionPro();
Connection connE = cPro.getConection();
threadN = threadN + "||" + threadName;
PreparedStatement pStmt = connE.prepareStatement(sb.toString());
try {
count = count + 1;
for (Employee employeeObj : employee) {
pStmt.setInt(1, employeeObj.getEmp_id());
pStmt.setDouble(2, employeeObj.getSalary() * .10);
pStmt.setDouble(3, employeeObj.getSalary() * .05);
pStmt.setDouble(4, employeeObj.getSalary()
+ (employeeObj.getSalary() * .05)
+ (employeeObj.getSalary() * .10));
pStmt.setInt(5, count);
pStmt.setString(6, threadN);
pStmt.setInt(7, employeeObj.getEmp_id());
pStmt.setDouble(8, employeeObj.getSalary() * .10);
pStmt.setDouble(9, employeeObj.getSalary() * .05);
pStmt.setDouble(10, employeeObj.getSalary()
+ (employeeObj.getSalary() * .05)
+ (employeeObj.getSalary() * .10));
pStmt.setInt(11, count);
pStmt.setString(12, threadN);
pStmt.addBatch();
}
int arr[] = pStmt.executeBatch();
connE.commit();
System.out.println("Size=" + arr.length);
if (arr.length != 0) {
for (int i = 0; i < arr.length; i++) {
System.out.println(i + "==" + arr[i]);
}
}
} catch (Exception e) {
connE.rollback();
throw e;
} finally {
pStmt.close();
connE.close();
}
}
查看代码,准备好的语句总是返回-2(数组内的所有值都是-2)sql命令的值,如更新,合并等,我使用过像ojdbc6.jar,ojdbc5.jar等库