Package com.iplanet.jato.model.sql

JDBC-related Model implementations

See:
          Description

Interface Summary
DeleteQueryModel Specialization of QueryModel that supports DELETE SQL queries
InsertQueryModel Specialization of QueryModel that supports INSERT SQL queries
ModifyingQueryModel Specialization of QueryModel that provides information returned by a modifying (INSERT, UPDATE, or DELETE) query.
QueryModel Defines operations specific to a model that uses a standard RDMBS as its backend data repository.
SelectQueryModel Specialization of QueryModel that supports SELECT SQL queries
SQLModel The basis for all models that use SQL or a database as their backing data store
SQLModelExecutionContext An extension to the basic execution context that allows passing of JDBC Connection and/or Statement objects to the target model.
StoredProcModel A model that uses a stored procedure (accessed via JDBC) as its backing data store
UpdateQueryModel Specialization of QueryModel that supports UPDATE SQL queries
 

Class Summary
DatasetSQLModelExecutionContext An execution context used to execute dataset operations on QueryModels (normally SQL SELECT operations).
ModifyingQueryExecutionContext  
QueryFieldDescriptor Encapsulates the metadata needed to describe a QueryModel logical field.
QueryFieldSchema The schema containing the SQL program metadata.
QueryModelBase This class is the core implementation for all SQL query-based models.
QueryModelBase.WhereCriterion Represents a single WHERE clause criterion.
ResultSetModelBase Model base class that provides significant functionality to cope with the vagaries of JDBC result sets as a model data stores.
SelectQueryExecutionContext Execution context tailored for use with SELECT SQL queries.
StoredProcModelBase A model implementation that uses a stored procedure as its backing data store
StoredProcParameterDescriptor Encapsulates the metadata needed to describe a StoredProcModel logical field.
StoredProcSchema The schema containing the stored procedure metadata.
 

Package com.iplanet.jato.model.sql Description

JDBC-related Model implementations