Package entidades

Examples of entidades.Actividad


    boolean resultado = false;
   
    try {
      em = emf.createEntityManager();
     
      Actividad actividad = null;
     
      Query q = em.createQuery("SELECT a FROM Actividad a WHERE a.calendarioacademico.strCodcalendario='2011' " +
                           "and a.intCodigoActividad=1 and (CURRENT_DATE between a.dtFecIni and a.dtFecFin)");
      //q.setParameter(1, codigoCalendario);
      //q.setParameter(2, 1);
View Full Code Here

TOP

Related Classes of entidades.Actividad

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.