16

我正在使用以下方法通过 jdbc 计算工资单,但“ORA-01008:并非所有变量都绑定”错误没有消除。

请问有什么想法吗?

我正在使用以下代码

public double getPayroll(){
            ResultSet rs = null;
            ResultSet rs1 = null;
            ResultSet rs2 = null;

            Connection conn = null;
            PreparedStatement pstmt = null;
            try {
                    conn = getDBConnection();
                    double dailyPay=0,basicPay=0,payroll2=0;
                    int houseRent=0,convAllow=0,noOfPresents=0,empId=0;
                    String q = "select e_id from employee";
                    pstmt = conn.prepareStatement(q);
                    rs = pstmt.executeQuery();
                    while (rs.next()) {
                        empId=rs.getInt(1);
                        String q1 = "select count(att_status) from attendance where att_status='p'";
                        pstmt = conn.prepareStatement(q1);
                        rs1 = pstmt.executeQuery(q1);
                        while(rs1.next()){
                            noOfPresents=rs1.getInt(1);
                            String q2 = "select e_salary,e_house_rent,e_conv_allow from employee where e_id=?";
                            pstmt = conn.prepareStatement(q2);
                            pstmt.setInt(1,empId);
                            rs2 = pstmt.executeQuery(q2);
                            while(rs2.next()){
                                dailyPay=rs2.getInt(1)/22;
                                houseRent=rs2.getInt(2);
                                convAllow=rs2.getInt(3);
                                basicPay=dailyPay*noOfPresents;
                                payroll2+=basicPay+houseRent+convAllow;
                            } 
                        }
                    }
                    return payroll2;
             }catch (Exception e) {
              e.printStackTrace();
              return 0.0;
            } finally {
              try {
                rs.close();
                pstmt.close();
                conn.close();
              } catch (Exception e) {
                e.printStackTrace();
              }
            }
} 
4

4 回答 4

50

你的问题在这里:

rs2 = pstmt.executeQuery(q2);

您是在告诉PreparedStatement执行 SQL q2,而不是执行先前准备的 SQL。这应该只是:

rs2 = pstmt.executeQuery();

这是一个相当常见的错误,主要是由糟糕的类设计java.sql.Statement 及其子类型引起的。

正如@RMT 指出的那样,您在这里犯了同样的错误:

rs1 = pstmt.executeQuery(q1);

这无关紧要,因为 中没有占位符q1,所以 SQL 按原样执行。但是,它仍然是错误的。

最后,在将变量重新分配给另一个变量之前,您应该考虑调用close()第一个。如果你不这样做,你就有泄漏的风险。PreparedStatementpstmt

于 2011-06-24T15:11:49.177 回答
1

一个原因可能是您不能像那样重用 pstmt 的实例。您必须在循环的每个级别中使用单独的 PreparedStatement 实例。

你知道这也可以用一个语句来完成吗?

编辑
假设员工和出勤之间存在关系,这样的事情会在一个请求中返回总和:

select sum( (e_salary / 22) * att_count + e_house_rent + e_conv_allow )
from (
    select emp.e_salary
           emp.e_house_rent,
           emp.e_conv_allow, 
           (select count(att.att_status) from attendance att where att.e_id = mp.e_id) s att_count
    from employee emp
) t 

如果确实出勤与员工无关,只需在嵌套选择中省略 where 子句。

于 2011-06-24T15:13:17.327 回答
1
                            pstmt = conn.prepareStatement(q2);
                            pstmt.setInt(1,empId);
                            rs2 = pstmt.executeQuery(q2);

您已经使用查询 q2 创建了准备好的语句并将变量 empId 绑定到它。如果您现在调用 pstmt.executeQuery(q2),变量绑定将丢失。当您执行 pstmt.executeQuery(q2) 时,JDBC 驱动程序可能会解析未绑定的 sql q2。

于 2011-06-24T15:15:33.300 回答
-1

更新 TESTCP SET CP_KEY2 =?, CP_DESC =?, CP_MAKER =?, CP_MAKER_DT =SYSDATE, CP_STATUS ='M' WHERE CP_LANGUAGE = ? 和 CP_ENG_CODE = ? 和 CP_KEY1 =?和 CP_LANGUAGE =?

在上面的查询中,我们有 7 个 in 参数,但如果在您的 java 代码 PreparedStatement 中您只设置了 6 个参数值。

那个时候也会出现这个错误。

于 2016-06-28T12:43:49.117 回答