sql = "update scbs_unidadesaude set " + "descricao='" + us.getDescription() + "'"
+ " where codigo = '" + us.getId() + "'";
stmt.executeUpdate(sql);
stmt.close();
} catch (SQLException sqlException) {
throw new SQLPersistenceMechanismException(ExceptionMessages.EXC_FALHA_BD,sql);
} catch (PersistenceMechanismException mpException) {
throw new RepositoryException(ExceptionMessages.EXC_FALHA_ATUALIZACAO);
} finally {
try {
mp.releaseCommunicationChannel();