Uses of Class
com.jpattern.orm.exception.OrmNotUniqueResultException

Packages that use OrmNotUniqueResultException
com.jpattern.orm.exception   
com.jpattern.orm.query   
com.jpattern.orm.query.find   
com.jpattern.orm.query.sql   
com.jpattern.orm.session   
 

Uses of OrmNotUniqueResultException in com.jpattern.orm.exception
 

Subclasses of OrmNotUniqueResultException in com.jpattern.orm.exception
 class OrmNotUniqueResultManyResultsException
          Exception thrown when a unique result is expected but more than one result is found
 class OrmNotUniqueResultNoResultException
          Exception thrown when a unique result is expected but no results are found
 

Uses of OrmNotUniqueResultException in com.jpattern.orm.query
 

Methods in com.jpattern.orm.query that throw OrmNotUniqueResultException
 Object[] CustomQuery.findUnique()
          Execute the query and read the result creating an ordered array with the extracted column values or null (if no matching bean is found).
<T> T
CustomQuery.findUnique(ResultSetRowReader<T> rsrr)
          Execute the query reading the ResultSet with a ResultSetRowReader.
 

Uses of OrmNotUniqueResultException in com.jpattern.orm.query.find
 

Methods in com.jpattern.orm.query.find that throw OrmNotUniqueResultException
 BEAN FindWhereImpl.find()
           
 BEAN FindQueryCommon.find()
          Execute the query returning either a single bean, if the ResultSet contains at least one row, or null, if no matching beans are found).
 BEAN FindQueryOrm.find()
           
 BEAN FindOrderByImpl.find()
           
 Object[] CustomFindWhereImpl.findUnique()
           
 BEAN FindWhereImpl.findUnique()
           
 BEAN FindQueryCommon.findUnique()
          Execute the query returning either a single bean or an Exception.
 BEAN FindQueryOrm.findUnique()
           
 Object[] CustomFindOrderByImpl.findUnique()
           
 BEAN FindOrderByImpl.findUnique()
           
 Object[] CustomFindQueryOrm.findUnique()
           
<T> T
CustomFindWhereImpl.findUnique(ResultSetRowReader<T> rsrr)
           
<T> T
CustomFindOrderByImpl.findUnique(ResultSetRowReader<T> rsrr)
           
<T> T
CustomFindQueryOrm.findUnique(ResultSetRowReader<T> rsrr)
           
 

Uses of OrmNotUniqueResultException in com.jpattern.orm.query.sql
 

Methods in com.jpattern.orm.query.sql that throw OrmNotUniqueResultException
 Object[] PlainSqlFindQuery.findUnique()
           
 

Uses of OrmNotUniqueResultException in com.jpattern.orm.session
 

Methods in com.jpattern.orm.session that throw OrmNotUniqueResultException
<T> T
Session.findUnique(Class<T> clazz, Object idValue)
          Find a bean using is ID.
<T> T
OrmSession.findUnique(Class<T> clazz, Object value)
           
<T> T
Session.findUnique(Class<T> clazz, Object[] idValues)
          Find a bean using is IDs.
<T> T
OrmSession.findUnique(Class<T> clazz, Object[] values)
           
 Object[] SqlPerformer.queryForArray(String sql, Collection<?> args)
          Execute a query given static SQL and read the result creating an ordered array with the extracted column values (return null if no rows are returned)
 Object[] NullSqlExecutor.queryForArray(String sql, Collection<?> args)
           
 Object[] PlainSqlPerformer.queryForArray(String sql, Collection<?> values)
           
 Object[] SqlPerformer.queryForArray(String sql, Object... args)
          Execute a query given static SQL and read the result creating an ordered array with the extracted column values (return null if no rows are returned)
 Object[] PlainSqlPerformer.queryForArray(String sql, Object... values)
           
 BigDecimal SqlPerformer.queryForBigDecimal(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as a BigDecimal value (return null if no rows are returned)
 BigDecimal NullSqlExecutor.queryForBigDecimal(String sql, Collection<?> args)
           
 BigDecimal PlainSqlPerformer.queryForBigDecimal(String sql, Collection<?> values)
           
 BigDecimal SqlPerformer.queryForBigDecimal(String sql, Object... args)
          Execute a query given static SQL and read the result as a BigDecimal value (return null if no rows are returned)
 BigDecimal PlainSqlPerformer.queryForBigDecimal(String sql, Object... values)
           
 Boolean SqlPerformer.queryForBoolean(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as a boolean value (return null if no rows are returned)
 Boolean NullSqlExecutor.queryForBoolean(String sql, Collection<?> args)
           
 Boolean PlainSqlPerformer.queryForBoolean(String sql, Collection<?> values)
           
 Boolean SqlPerformer.queryForBoolean(String sql, Object... args)
          Execute a query given static SQL and read the result as a boolean value (return null if no rows are returned)
 Boolean PlainSqlPerformer.queryForBoolean(String sql, Object... values)
           
 Double SqlPerformer.queryForDouble(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as a double value (return null if no rows are returned)
 Double NullSqlExecutor.queryForDouble(String sql, Collection<?> args)
           
 Double PlainSqlPerformer.queryForDouble(String sql, Collection<?> values)
           
 Double SqlPerformer.queryForDouble(String sql, Object... args)
          Execute a query given static SQL and read the result as a double value (return null if no rows are returned)
 Double PlainSqlPerformer.queryForDouble(String sql, Object... values)
           
 Float SqlPerformer.queryForFloat(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as a float value (return null if no rows are returned)
 Float NullSqlExecutor.queryForFloat(String sql, Collection<?> args)
           
 Float PlainSqlPerformer.queryForFloat(String sql, Collection<?> values)
           
 Float SqlPerformer.queryForFloat(String sql, Object... args)
          Execute a query given static SQL and read the result as a float value (return null if no rows are returned)
 Float PlainSqlPerformer.queryForFloat(String sql, Object... values)
           
 Integer SqlPerformer.queryForInt(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as an int value (return null if no rows are returned)
 Integer NullSqlExecutor.queryForInt(String sql, Collection<?> args)
           
 Integer PlainSqlPerformer.queryForInt(String sql, Collection<?> values)
           
 Integer SqlPerformer.queryForInt(String sql, Object... args)
          Execute a query given static SQL and read the result as an int value (return null if no rows are returned)
 Integer PlainSqlPerformer.queryForInt(String sql, Object... values)
           
 Long SqlPerformer.queryForLong(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as an long value (return null if no rows are returned)
 Long NullSqlExecutor.queryForLong(String sql, Collection<?> args)
           
 Long PlainSqlPerformer.queryForLong(String sql, Collection<?> values)
           
 Long SqlPerformer.queryForLong(String sql, Object... args)
          Execute a query given static SQL and read the result as an long value (return null if no rows are returned)
 Long PlainSqlPerformer.queryForLong(String sql, Object... values)
           
 String SqlPerformer.queryForString(String sql, Collection<?> args)
          Execute a query given static SQL and read the result as a String value (return null if no rows are returned)
 String NullSqlExecutor.queryForString(String sql, Collection<?> args)
           
 String PlainSqlPerformer.queryForString(String sql, Collection<?> values)
           
 String SqlPerformer.queryForString(String sql, Object... args)
          Execute a query given static SQL and read the result as a String value (return null if no rows are returned)
 String PlainSqlPerformer.queryForString(String sql, Object... values)
           
<T> T
SqlPerformer.queryForUnique(String sql, ResultSetRowReader<T> rsrr, Object... args)
          Execute a query given static SQL, reading the ResultSet with a ResultSetRowReader.
<T> T
NullSqlExecutor.queryForUnique(String sql, ResultSetRowReader<T> rsrr, Object... args)
           
<T> T
PlainSqlPerformer.queryForUnique(String sql, ResultSetRowReader<T> rsrr, Object... args)
           
 



Copyright © 2013. All Rights Reserved.