Uses of Interface
com.uwyn.rife.database.queries.Query

Packages that use Query
com.uwyn.rife.cmf.dam.contentstores Provides managers classes for content data support. 
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 Query in com.uwyn.rife.cmf.dam.contentstores
 

Methods in com.uwyn.rife.cmf.dam.contentstores with parameters of type Query
protected  DbPreparedStatement DatabaseRawStore.getStreamPreparedStatement(Query query, DbConnection connection)
           
 

Uses of Query in com.uwyn.rife.database
 

Methods in com.uwyn.rife.database that return Query
 Query DbPreparedStatement.getQuery()
          Returns the query builder that provides the SQL query that will be executed by this prepared statement.
 

Methods in com.uwyn.rife.database with parameters of type Query
 int DbQueryManager.executeUpdate(Query query)
          Safely and quickly executes an update statement.
 int DbStatement.executeUpdate(Query query)
          Executes the given Query builder's SQL statement, which may be an INSERT, UPDATE, or DELETE statement or a SQL statement that returns nothing, such as an SQL DDL statement.
 int DbQueryManager.executeUpdate(Query query, DbPreparedStatementHandler handler)
          Safely execute an updates statement.
 DbPreparedStatement DbConnection.getPreparedStatement(Query query)
          Creates a new DbPreparedStatement instance for this connection from a Query instance.
 DbPreparedStatement DbResultSetHandler.getPreparedStatement(Query query, DbConnection connection)
           
 DbPreparedStatement DbConnection.getPreparedStatement(Query query, int autoGeneratedKeys)
          Creates a new DbPreparedStatement instance for this connection from a Query instance that has the capability to retrieve auto-generated keys.
 DbPreparedStatement DbConnection.getPreparedStatement(Query query, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          Creates a new DbPreparedStatement instance for this connection from a Query instance that will generate ResultSet objects with the given type, concurrency, and holdability.
 

Uses of Query in com.uwyn.rife.database.queries
 

Subinterfaces of Query in com.uwyn.rife.database.queries
 interface ReadQuery
           
 

Classes in com.uwyn.rife.database.queries that implement Query
 class AbstractWhereGroup<ParentType extends WhereQuery>
           
 class AbstractWhereQuery<QueryType extends AbstractWhereQuery>
           
 class CreateSequence
          Object representation of a SQL "CREATE SEQUENCE" query.
 class CreateTable
          Object representation of a SQL "CREATE TABLE" query.
 class Delete
          Object representation of a SQL "DELETE" query.
 class DropSequence
          Object representation of a SQL "DROP SEQUENCE" query.
 class DropTable
          Object representation of a SQL "DROP TABLE" query.
 class Insert
          Object representation of a SQL "INSERT" query.
 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
           
 class Update
          Object representation of a SQL "UPDATE" query.
 class WhereGroup<ParentType extends WhereQuery>
           
 class WhereGroupAnd<ParentType extends WhereQuery>
           
 class WhereGroupOr<ParentType extends WhereQuery>
           
 

Uses of Query in com.uwyn.rife.database.querymanagers.generic
 

Classes in com.uwyn.rife.database.querymanagers.generic that implement Query
 class CountQuery
           
 class DeleteQuery
           
 class RestoreQuery
           
 



Copyright © 2001-2007 Uwyn sprl/bvba. All Rights Reserved.