List of usage examples for org.hibernate Query uniqueResult
R uniqueResult();
From source file:co.com.siscomputo.mejoramientocontinuo.logic.AnexoPlanesAccionLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return/*w w w . ja v a2 s .c o m*/ */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"OK".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idTablaAnexo) FROM AnexoPlanesAccionEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.mejoramientocontinuo.logic.AuditoriaLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//from ww w .ja v a 2 s . c om */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idAuditoria) FROM AuditoriaEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.mejoramientocontinuo.logic.PlanesAccionLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//w w w. jav a2s . c o m */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idPlanesAccion) FROM PlanesAccionEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.AnexosContratoLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//from ww w.ja v a2 s .c o m */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idAnexo) FROM AnexoContratoEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.CertificadoLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return/*w ww.jav a 2 s .c om*/ */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idCertificado) FROM CertificadoCalidadEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.ContratosLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return/*w w w .j a v a 2 s . c o m*/ */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(IdContrato) FROM ContratosEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.FormasPagoLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//from w ww .j a v a2s . c o m */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idFormasPagos) FROM FormasPagoEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.PolizaLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//from w w w .j a v a2s .co m */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idPoliza) FROM PolizasEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.PreguntasEvaluacionLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return/*w w w . j a v a 2s. c om*/ */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idPregunta) FROM PreguntasEvaluacionEntity"); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }
From source file:co.com.siscomputo.proveedores.logic.ProveedoresLogic.java
/** * Mtodo que trae el siguiente ID de una tabla * * @return//w w w . ja v a2 s. co m */ private int maxDocumento() { int ret = -1; try { String validaConexion = initOperation(); if (!"Ok".equalsIgnoreCase(validaConexion)) { } else { Query query = sesion.createQuery("SELECT MAX(idProveedor) FROM ProveedoresEntity "); ret = (int) query.uniqueResult(); ret++; } } catch (Exception e) { ret = 1; } return ret; }