Doing the method to select all data from a table, however it is returning me error. console: Open bench.
java.sql.SQLException: No value specified for parameter 1 No value specified for parameter 1 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1055) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956) at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:926) at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:2176) at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:2100) at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:931) at persistence.ProdutoDao.findAll(ProdutoDao.java:27) at persistence.ProdutoDao.main(ProdutoDao.java:51)
FindAll Method:
public List<Produto> findAll()throws Exception{
open();//metodo q abre a conexao com o banco
stmt = con.prepareStatement(SELECT); //constante select*from produto
stmt.execute();
rs = stmt.executeQuery();
List<Produto> lista = new ArrayList<>();
while(rs.next()){
lista.add(new Produto(
rs.getInt(1),
rs.getString(2),
rs.getString(3),
rs.getString(4),
rs.getDouble(5)
)
);
}
close();//metodo que fecha a conexao com o banco
return lista;
}
public static void main(String[] args) {
try {
ProdutoDao pd = new ProdutoDao();
System.out.println(pd.findAll());
} catch (Exception e) {
e.printStackTrace();
e.printStackTrace();
System.out.println("Nao listou " + e.getMessage());
}
}