While am using this code it shows java.sql.SQLException Parameter index out of range (1 > number of parameters, which is 0):
private void cmd_searchActionPerformed(java.awt.event.ActionEvent evt) {                                           
try{
 String sql = "select * from STD where Name like '%?%' ";
      pst=conn.prepareStatement(sql);
      pst.setString(1,TXT_STUDENTNAME.getText());
      String value=TXT_STUDENTNAME.getText();
      rs=pst.executeQuery();
       jTable1.setModel(DbUtils.resultSetToTableModel(rs));
             }catch(Exception e){
       JOptionPane.showMessageDialog(null,e);
   }        
}     
How can i recover from this exception?
Try to remove the wildcard from the sql and add it to the value:
String sql = "select * from STD where Name like ? ";
pst=conn.prepareStatement(sql);
pst.setString(1,"%"+TXT_STUDENTNAME.getText()+"%");
Similar question here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With