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

Packages that use OrmNotUniqueResultException
com.googlecode.jpattern.orm.query   
com.googlecode.jpattern.orm.query.sql   
com.googlecode.jpattern.orm.session   
 

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

Methods in com.googlecode.jpattern.orm.query that throw OrmNotUniqueResultException
 T OrmQuery.findUnique()
           
 Object[] ICustomQuery.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).
 Object[] OrmCustomQuery.findUnique()
           
 T IOrmQuery.findUnique()
          Execute the query returning either a single bean or null (if no matching bean is found).
 

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

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

Uses of OrmNotUniqueResultException in com.googlecode.jpattern.orm.session
 

Methods in com.googlecode.jpattern.orm.session that throw OrmNotUniqueResultException
 Object[] ISqlPerformer.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[] ASqlPerformer.queryForArray(String sql, Object... values)
           
 BigDecimal ISqlPerformer.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 ASqlPerformer.queryForBigDecimal(String sql, Object... values)
           
 Boolean ISqlPerformer.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 ASqlPerformer.queryForBoolean(String sql, Object... values)
           
 Double ISqlPerformer.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 ASqlPerformer.queryForDouble(String sql, Object... values)
           
 Float ISqlPerformer.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 ASqlPerformer.queryForFloat(String sql, Object... values)
           
 Integer ISqlPerformer.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 ASqlPerformer.queryForInt(String sql, Object... values)
           
 Long ISqlPerformer.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 ASqlPerformer.queryForLong(String sql, Object... values)
           
 String ISqlPerformer.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 ASqlPerformer.queryForString(String sql, Object... values)
           
 



Copyright © 2011. All Rights Reserved.