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
abstract  void Session.clear()
           
 void ClassLoaderSession.clear()
           
abstract  Connection Session.close()
           
 Connection ClassLoaderSession.close()
           
abstract  void SessionFactory.closeSession(Session session)
           
abstract  boolean Session.contains(Object object)
           
 boolean ClassLoaderSession.contains(Object object)
           
abstract  Query Session.createQuery(String queryString)
           
 Query ClassLoaderSession.createQuery(String queryString)
           
abstract  Query Session.createQuery(String queryString, boolean strictName)
           
 Query ClassLoaderSession.createQuery(String queryString, boolean strictName)
           
abstract  SQLQuery Session.createSQLQuery(String queryString)
           
 SQLQuery ClassLoaderSession.createSQLQuery(String queryString)
           
abstract  SQLQuery Session.createSQLQuery(String queryString, boolean strictName)
           
 SQLQuery ClassLoaderSession.createSQLQuery(String queryString, boolean strictName)
           
abstract  void Session.delete(Object object)
           
 void ClassLoaderSession.delete(Object object)
           
abstract  void Session.evict(Object object)
           
 void ClassLoaderSession.evict(Object object)
           
abstract  int Query.executeUpdate()
           
abstract  boolean ScrollableResults.first()
           
abstract  void Session.flush()
           
 void ClassLoaderSession.flush()
           
abstract  Object[] ScrollableResults.get()
           
abstract  Object Session.get(Class<?> clazz, Serializable id)
           
 Object ClassLoaderSession.get(Class<?> clazz, Serializable id)
           
abstract  Object Session.get(Class<?> clazz, Serializable id, LockMode lockMode)
           
 Object ClassLoaderSession.get(Class<?> clazz, Serializable id, LockMode lockMode)
           
abstract  Object ScrollableResults.get(int i)
           
abstract  Session SessionFactory.getCurrentSession()
           
abstract  Dialect SessionFactory.getDialect()
           
abstract  Object Session.getWrappedSession()
           
 Object ClassLoaderSession.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)
           
abstract  Object Session.load(Class<?> clazz, Serializable id)
           
 Object ClassLoaderSession.load(Class<?> clazz, Serializable id)
           
abstract  Object Session.merge(Object object)
           
 Object ClassLoaderSession.merge(Object object)
           
abstract  boolean ScrollableResults.next()
           
abstract  Session SessionFactory.openNewSession(Connection connection)
           
abstract  Session SessionFactory.openSession()
           
abstract  boolean ScrollableResults.previous()
           
abstract  Serializable Session.save(Object object)
           
 Serializable ClassLoaderSession.save(Object object)
           
abstract  void Session.saveOrUpdate(Object object)
           
 void ClassLoaderSession.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
static void BatchSessionUtil.delete(Session session, BaseModel<?> model)
          Deprecated.  
abstract  void BatchSession.delete(Session session, BaseModel<?> model)
          Deprecated. Deletes the model instance in the database, and possibly flushes the session.
abstract  Session BasePersistence.getCurrentSession()
           
abstract  Session BasePersistence.openSession()
           
static void BatchSessionUtil.update(Session session, BaseModel<?> model, boolean merge)
          Deprecated.  
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.
 

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