Package org.hibernate.jdbc

This package abstracts the mechanism for dispatching SQL statements to the database, and implements interaction with JDBC.

See:
          Description

Interface Summary
Batcher Manages PreparedStatements for a session.
BatcherFactory Factory for Batcher instances.
JDBCContext.Context  
 

Class Summary
AbstractBatcher Manages prepared statements and batching.
BatchingBatcher An implementation of the Batcher interface that actually uses batching
BatchingBatcherFactory  
ColumnNameCache Implementation of ColumnNameCache.
JDBCContext Implementation of JDBCContext.
NonBatchingBatcher An implementation of the Batcher interface that does no batching
NonBatchingBatcherFactory  
ResultSetWrapper A ResultSet delegate, responsible for locally caching the columnName-to-columnIndex resolution that has been found to be inefficient in a few vendor's drivers (i.e., Oracle and Postgres).
 

Package org.hibernate.jdbc Description

This package abstracts the mechanism for dispatching SQL statements to the database, and implements interaction with JDBC.

Concrete implementations of the Batcher interface may be selected by specifying hibernate.jdbc.factory_class.