java.sql.SQLException:参数索引超出范围(1>参数个数,为0)。

时间:2015-09-20 22:03:46

标签: java mysql

我对此功能有疑问

String القيمة=jTextField3.getText();
Connection conn=null;
PreparedStatement pstmt=null;
ResultSet rs=null;
try{
    Class.forName("com.mysql.jdbc.Driver");
    conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/cars","root","123456");
    pstmt=conn.prepareStatement("select القيمة from eradat WHERE DATE_FORMAT(التاريخ, \"%m-%Y\") = \"01-2015\";");
    pstmt.setString(1,القيمة);
    rs=pstmt.executeQuery();
    while(rs.next()){
        jTextField3.setText(rs.getString("القيمة"));
    }
}
catch(Exception e){
    JOptionPane.showMessageDialog(null, e);
}
finally{
    try{
        conn.close();
        pstmt.close();
        rs.close();
    }
    catch(Exception e){

    }
} 

我收到错误消息:java.sql.SQLException:参数索引超出范围(1>参数个数,为0)。

2 个答案:

答案 0 :(得分:0)

您正在尝试向查询中添加一个参数,该参数不需要参数,只需从代码中删除pstmt.setString(1,القيمة);,以使PreparedStatement不将参数绑定到您提供的查询中。所以try catch块中的代码应该是:

try{
  Class.forName("com.mysql.jdbc.Driver");
  conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/cars","root","123456");
  pstmt=conn.prepareStatement("select القيمة from eradat WHERE DATE_FORMAT(التاريخ, \"%m-%Y\") = \"01-2015\";");
  rs=pstmt.executeQuery();
  while(rs.next()){
    jTextField3.setText(rs.getString("القيمة"));
  }
}
catch(Exception e){
  JOptionPane.showMessageDialog(null, e);
}

如果您需要为查询设置参数,则需要在其中使用占位符[{1}},在这种情况下,您将能够在查询中设置值。然后qiuery可能像:

?

您可以使用

为where子句设置值
select القيمة from eradat WHERE DATE_FORMAT(التاريخ, \"%m-%Y\") = \"?\";

答案 1 :(得分:0)

您正在尝试使用未在语句中定义的预准备语句设置参数。因此,只需删除/注释代码中的以下行:

pstmt.setString(1,القيمة);