public void update(Account entity) throws Exception {
try {
Connection conn = base.getConnection();
PreparedStatement stmt = conn.prepareStatement("update Accounts set Description = ? where Id = ?");
stmt.setString(1,entity.getDescription());
stmt.setInt(2, entity.getId());
stmt.executeUpdate();
stmt.close();
}
catch (SQLException e) {
throw e;
}
}
La requête SQL est repréparée à chaque appel de la méthode update ?