“ORA-01008: 并非所有变量都绑定”错误

我使用以下方法通过使用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();
              }
            }
} 

答案 1

您的问题就在这里:

rs2 = pstmt.executeQuery(q2);

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

rs2 = pstmt.executeQuery();

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

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

rs1 = pstmt.executeQuery(q1);

这并不重要,因为 中没有占位符,因此 SQL 按原样执行。但是,这仍然是错误的。q1

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


答案 2
                            pstmt = conn.prepareStatement(q2);
                            pstmt.setInt(1,empId);
                            rs2 = pstmt.executeQuery(q2);

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


推荐