Na descrição do vídeo é colocado o seguinte código
public class TestaRemocao {
public static void main(String[] args) throws SQLException {
Connection connection = Database.getConnection();
Statement stmt = connection.createStatement();
stmt.execute("delete from Produto where id>3");
// quantas linhas foram removidas?
statement.close();
connection.close();
}
}
o Statment não foi declarado como "stmt"? Porque esta sendo fechado como "statement.close();" ?
Não deveria ser "stmt.close(); ou eu entendi errado ?