Package com.liferay.util.dao.hibernate

Examples of com.liferay.util.dao.hibernate.SessionConfiguration


      Logger.error(HibernateException.class,he.getMessage(),he);
    }
  }

  public static Dialect getDialect(String className) {
    SessionConfiguration config =
      _getSessionConfigurationInstance(className);

    return config.getDialect();
  }
View Full Code Here


  }

  public static Session openSession(String className)
    throws HibernateException {

    SessionConfiguration config =
      _getSessionConfigurationInstance(className);

    return config.openSession();
  }
View Full Code Here

TOP

Related Classes of com.liferay.util.dao.hibernate.SessionConfiguration

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.