Liferay 6.2.0

Uses of Class
com.liferay.portal.kernel.dao.orm.ORMException

Packages that use ORMException
com.liferay.portal.kernel.dao.orm   
com.liferay.portal.service.persistence This package defines the portal service persistence interfaces, classes, and utilities. 
com.liferay.portal.service.persistence.impl This package defines the portal service persistence implementation base classes. 
 

Uses of ORMException in com.liferay.portal.kernel.dao.orm
 

Subclasses of ORMException in com.liferay.portal.kernel.dao.orm
 class ObjectNotFoundException
           
 

Methods in com.liferay.portal.kernel.dao.orm that throw ORMException
 void ClassLoaderSession.clear()
           
abstract  void Session.clear()
           
 Connection ClassLoaderSession.close()
           
abstract  Connection Session.close()
           
abstract  void SessionFactory.closeSession(Session session)
           
 boolean ClassLoaderSession.contains(Object object)
           
abstract  boolean Session.contains(Object object)
           
 Query ClassLoaderSession.createQuery(String queryString)
           
abstract  Query Session.createQuery(String queryString)
           
 Query ClassLoaderSession.createQuery(String queryString, boolean strictName)
           
abstract  Query Session.createQuery(String queryString, boolean strictName)
           
 SQLQuery ClassLoaderSession.createSQLQuery(String queryString)
           
abstract  SQLQuery Session.createSQLQuery(String queryString)
           
 SQLQuery ClassLoaderSession.createSQLQuery(String queryString, boolean strictName)
           
abstract  SQLQuery Session.createSQLQuery(String queryString, boolean strictName)
           
 void ClassLoaderSession.delete(Object object)
           
abstract  void Session.delete(Object object)
           
 void ClassLoaderSession.evict(Object object)
           
abstract  void Session.evict(Object object)
           
abstract  int Query.executeUpdate()
           
abstract  boolean ScrollableResults.first()
           
 void ClassLoaderSession.flush()
           
abstract  void Session.flush()
           
abstract  Object[] ScrollableResults.get()
           
 Object ClassLoaderSession.get(Class<?> clazz, Serializable id)
           
abstract  Object Session.get(Class<?> clazz, Serializable id)
           
 Object ClassLoaderSession.get(Class<?> clazz, Serializable id, LockMode lockMode)
           
abstract  Object Session.get(Class<?> clazz, Serializable id, LockMode lockMode)
           
abstract  Object ScrollableResults.get(int i)
           
abstract  Session SessionFactory.getCurrentSession()
           
abstract  Dialect SessionFactory.getDialect()
           
 Object ClassLoaderSession.getWrappedSession()
           
abstract  Object Session.getWrappedSession()
           
abstract  Iterator Query.iterate()
           
abstract  Iterator Query.iterate(boolean modifiable)
           
abstract  Object Query.iterateNext()
           
abstract  boolean ScrollableResults.last()
           
abstract  List Query.list()
           
abstract  List Query.list(boolean unmodifiable)
           
abstract  List Query.list(boolean copy, boolean unmodifiable)
           
 Object ClassLoaderSession.load(Class<?> clazz, Serializable id)
           
abstract  Object Session.load(Class<?> clazz, Serializable id)
           
 Object ClassLoaderSession.merge(Object object)
           
abstract  Object Session.merge(Object object)
           
abstract  boolean ScrollableResults.next()
           
abstract  Session SessionFactory.openNewSession(Connection connection)
           
abstract  Session SessionFactory.openSession()
           
abstract  boolean ScrollableResults.previous()
           
 Serializable ClassLoaderSession.save(Object object)
           
abstract  Serializable Session.save(Object object)
           
 void ClassLoaderSession.saveOrUpdate(Object object)
           
abstract  void Session.saveOrUpdate(Object object)
           
abstract  ScrollableResults Query.scroll()
           
abstract  boolean ScrollableResults.scroll(int i)
           
abstract  Object Query.uniqueResult()
           
 

Uses of ORMException in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that throw ORMException
abstract  void BatchSession.delete(Session session, BaseModel<?> model)
          Deprecated. Deletes the model instance in the database, and possibly flushes the session.
static void BatchSessionUtil.delete(Session session, BaseModel<?> model)
          Deprecated.  
abstract  Session BasePersistence.getCurrentSession()
           
abstract  Session BasePersistence.openSession()
           
abstract  void BatchSession.update(Session session, BaseModel<?> model, boolean merge)
          Deprecated. Updates the model instance in the database or adds it if it does not yet exist, and possibly flushes the session.
static void BatchSessionUtil.update(Session session, BaseModel<?> model, boolean merge)
          Deprecated.  
 

Uses of ORMException in com.liferay.portal.service.persistence.impl
 

Methods in com.liferay.portal.service.persistence.impl that throw ORMException
 Session BasePersistenceImpl.getCurrentSession()
           
 Session BasePersistenceImpl.openNewSession(Connection connection)
           
 Session BasePersistenceImpl.openSession()
           
 


Liferay 6.2.0