|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ReadQuery | |
|---|---|
| com.uwyn.rife.database | Provides classes and interfaces for the object-oriented query builders, database abstraction layer, persistance manager, query handling templates, fault-tolerant JDBC wrappers and connection pooling. |
| com.uwyn.rife.database.queries | Provides classes and interfaces for the object-oriented query builders. |
| com.uwyn.rife.database.querymanagers.generic | Provides classes and interfaces for the persistance framework. |
| Uses of ReadQuery in com.uwyn.rife.database |
|---|
| Methods in com.uwyn.rife.database with parameters of type ReadQuery | ||
|---|---|---|
boolean |
DbQueryManager.executeFetchAll(ReadQuery query,
DbRowProcessor rowProcessor)
Safely and quickly fetches all the rows from the results of a select query. |
|
boolean |
DbQueryManager.executeFetchAll(ReadQuery query,
DbRowProcessor rowProcessor,
DbPreparedStatementHandler handler)
Safely fetches all the rows from the results of a customizable select query. |
|
|
DbQueryManager.executeFetchAllBeans(ReadQuery query,
Class<BeanType> beanClass)
Safely and quickly fetches the all the bean instances from the results of a select query. |
|
|
DbQueryManager.executeFetchAllBeans(ReadQuery query,
Class<BeanType> beanClass,
DbPreparedStatementHandler handler)
Safely fetches the all the bean instances from the results of a customizable select query. |
|
boolean |
DbQueryManager.executeFetchFirst(ReadQuery query,
DbRowProcessor rowProcessor)
Safely and quickly fetches the first row from the results of a select query. |
|
boolean |
DbQueryManager.executeFetchFirst(ReadQuery query,
DbRowProcessor rowProcessor,
DbPreparedStatementHandler handler)
Safely fetches the first row from the results of a customizable select query. |
|
|
DbQueryManager.executeFetchFirstBean(ReadQuery query,
Class<BeanType> beanClass)
Safely and quickly fetches the first bean instance from the results of a select query. |
|
|
DbQueryManager.executeFetchFirstBean(ReadQuery query,
Class<BeanType> beanClass,
DbPreparedStatementHandler handler)
Safely fetches the first bean instance from the results of a customizable select query. |
|
boolean |
DbQueryManager.executeGetFirstBoolean(ReadQuery query)
Safely and quickly retrieves the first cell as a boolean
from the results of a select query. |
|
boolean |
DbQueryManager.executeGetFirstBoolean(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a boolean from the
results of a customizable select query. |
|
byte |
DbQueryManager.executeGetFirstByte(ReadQuery query)
Safely and quickly retrieves the first cell as a byte from
the results of a select query. |
|
byte |
DbQueryManager.executeGetFirstByte(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a byte from the results
of a customizable select query. |
|
byte[] |
DbQueryManager.executeGetFirstBytes(ReadQuery query)
Safely and quickly retrieves the first cell as a byte
array from the results of a select query. |
|
byte[] |
DbQueryManager.executeGetFirstBytes(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a byte array from the
results of a customizable select query. |
|
Date |
DbQueryManager.executeGetFirstDate(ReadQuery query)
Safely and quickly retrieves the first cell as a sql Date
from the results of a select query. |
|
Date |
DbQueryManager.executeGetFirstDate(ReadQuery query,
Calendar cal)
Safely and quickly retrieves the first cell as a sql Date
from the results of a select query. |
|
Date |
DbQueryManager.executeGetFirstDate(ReadQuery query,
Calendar cal,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Date from the
results of a customizable select query. |
|
Date |
DbQueryManager.executeGetFirstDate(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Date from the
results of a customizable select query. |
|
double |
DbQueryManager.executeGetFirstDouble(ReadQuery query)
Safely and quickly retrieves the first cell as a double
from the results of a select query. |
|
double |
DbQueryManager.executeGetFirstDouble(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a double from the
results of a customizable select query. |
|
float |
DbQueryManager.executeGetFirstFloat(ReadQuery query)
Safely and quickly retrieves the first cell as a float
from the results of a select query. |
|
float |
DbQueryManager.executeGetFirstFloat(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a float from the
results of a customizable select query. |
|
int |
DbQueryManager.executeGetFirstInt(ReadQuery query)
Safely and quickly retrieves the first cell as a int from
the results of a select query. |
|
int |
DbQueryManager.executeGetFirstInt(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a int from the results
of a customizable select query. |
|
long |
DbQueryManager.executeGetFirstLong(ReadQuery query)
Safely and quickly retrieves the first cell as a long from
the results of a select query. |
|
long |
DbQueryManager.executeGetFirstLong(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a long from the results
of a customizable select query. |
|
short |
DbQueryManager.executeGetFirstShort(ReadQuery query)
Safely and quickly retrieves the first cell as a short
from the results of a select query. |
|
short |
DbQueryManager.executeGetFirstShort(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a short from the
results of a customizable select query. |
|
String |
DbQueryManager.executeGetFirstString(ReadQuery query)
Safely and quickly retrieves the first cell as a String
from the results of a select query. |
|
String |
DbQueryManager.executeGetFirstString(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a String from the
results of a customizable select query. |
|
Time |
DbQueryManager.executeGetFirstTime(ReadQuery query)
Safely and quickly retrieves the first cell as a sql Time
from the results of a select query. |
|
Time |
DbQueryManager.executeGetFirstTime(ReadQuery query,
Calendar cal)
Safely and quickly retrieves the first cell as a sql Time
from the results of a select query. |
|
Time |
DbQueryManager.executeGetFirstTime(ReadQuery query,
Calendar cal,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Time from the
results of a customizable select query. |
|
Time |
DbQueryManager.executeGetFirstTime(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Time from the
results of a customizable select query. |
|
Timestamp |
DbQueryManager.executeGetFirstTimestamp(ReadQuery query)
Safely and quickly retrieves the first cell as a sql Timestamp from the results of a select query. |
|
Timestamp |
DbQueryManager.executeGetFirstTimestamp(ReadQuery query,
Calendar cal)
Safely and quickly retrieves the first cell as a sql Timestamp from the results of a select query. |
|
Timestamp |
DbQueryManager.executeGetFirstTimestamp(ReadQuery query,
Calendar cal,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Timestamp from
the results of a customizable select query. |
|
Timestamp |
DbQueryManager.executeGetFirstTimestamp(ReadQuery query,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as a sql Timestamp from
the results of a customizable select query. |
|
boolean |
DbQueryManager.executeHasResultRows(ReadQuery query)
Safely and quickly verifies if a select query returns any rows. |
|
boolean |
DbQueryManager.executeHasResultRows(ReadQuery query,
DbPreparedStatementHandler handler)
Safely verifies if a customizable select query returns any rows. |
|
DbStatement |
DbQueryManager.executeQuery(ReadQuery query)
Executes a query statement in a connection of this DbQueryManager's Datasource. |
|
void |
DbStatement.executeQuery(ReadQuery query)
Executes the given Query builder's SQL statement. |
|
|
DbQueryManager.executeQuery(ReadQuery query,
DbPreparedStatementHandler handler)
Executes a customizable select statement. |
|
|
DbQueryManager.executeQuery(ReadQuery query,
DbResultSetHandler handler)
Executes a select statement and handle the results in a custom fashion. |
|
|
DbQueryManager.executeUseFirstAsciiStream(ReadQuery query,
InputStreamUser user)
Safely and quickly retrieves the first cell as an ASCII InputStream from the results of a select query. |
|
|
DbQueryManager.executeUseFirstAsciiStream(ReadQuery query,
InputStreamUser user,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as an ASCII InputStream
from the results of a customizable select query. |
|
|
DbQueryManager.executeUseFirstBinaryStream(ReadQuery query,
InputStreamUser user)
Safely and quickly retrieves the first cell as an binary InputStream from the results of a select query. |
|
|
DbQueryManager.executeUseFirstBinaryStream(ReadQuery query,
InputStreamUser user,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as an binary InputStream
from the results of a customizable select query. |
|
|
DbQueryManager.executeUseFirstCharacterStream(ReadQuery query,
ReaderUser user)
Safely and quickly retrieves the first cell as an character Reader from the results of a select query. |
|
|
DbQueryManager.executeUseFirstCharacterStream(ReadQuery query,
ReaderUser user,
DbPreparedStatementHandler handler)
Safely retrieves the first cell as an character Reader
from the results of a customizable select query. |
|
| Uses of ReadQuery in com.uwyn.rife.database.queries |
|---|
| Classes in com.uwyn.rife.database.queries that implement ReadQuery | |
|---|---|
class |
ReadQueryString
An instance of ReadQueryString can contain any kind of SQL
query for read purposes. |
class |
ReadQueryTemplate
An instance of ReadQueryTemplate will obtain a SQL from a
Template block. |
class |
Select
Object representation of a SQL "SELECT" query. |
class |
SequenceValue
|
| Uses of ReadQuery in com.uwyn.rife.database.querymanagers.generic |
|---|
| Classes in com.uwyn.rife.database.querymanagers.generic that implement ReadQuery | |
|---|---|
class |
CountQuery
|
class |
RestoreQuery
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||