public static boolean delete(PrenotazioneOggetto model) throws SQLException, Exception { if (!model.getCodicePrenotazione().matches("000000")) { PrenotazioneOggettoDto.delete(JndiName.dbTakaloa, model); return PrenotazioneManager.delete(model); } return false; }
/** * Controlla l'esistenza dell'oggetto nel database e nel caso non sia presente registra su DB i * dati contenuti nel <code>model</code>. * * @param model * @return boolean<br> * -<code>true</code> se la registrazione su DB avviene con successo -<code>false</code> se * l'oggetto esisteva già * @throws SQLException * @throws Exception */ public static boolean insert(PrenotazioneOggetto model) throws SQLException, Exception { PrenotazioneManager.insert(model); if (!model.getCodicePrenotazione().matches("000000")) { if (!checkExist(model)) { model.setCodicePrenotazioneOggetto(String.valueOf(count())); return PrenotazioneOggettoDto.insert(JndiName.dbTakaloa, model); } } return false; }