|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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). |
|
|
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()
|
|
|
CustomFindWhereImpl.findUnique(ResultSetRowReader<T> rsrr)
|
|
|
CustomFindOrderByImpl.findUnique(ResultSetRowReader<T> rsrr)
|
|
|
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 | ||
|---|---|---|
|
Session.findUnique(Class<T> clazz,
Object idValue)
Find a bean using is ID. |
|
|
OrmSession.findUnique(Class<T> clazz,
Object value)
|
|
|
Session.findUnique(Class<T> clazz,
Object[] idValues)
Find a bean using is IDs. |
|
|
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)
|
|
|
SqlPerformer.queryForUnique(String sql,
ResultSetRowReader<T> rsrr,
Object... args)
Execute a query given static SQL, reading the ResultSet with a ResultSetRowReader. |
|
|
NullSqlExecutor.queryForUnique(String sql,
ResultSetRowReader<T> rsrr,
Object... args)
|
|
|
PlainSqlPerformer.queryForUnique(String sql,
ResultSetRowReader<T> rsrr,
Object... args)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||