Package org.apache.commons.dbutils

DbUtils is a small set of classes designed to make working with JDBC easier.

See:
          Description

Interface Summary
ResultSetHandler Implementations of this interface convert ResultSets into other objects.
RowProcessor RowProcessor implementations convert ResultSet rows into various other objects.
 

Class Summary
BasicRowProcessor Basic implementation of the RowProcessor interface.
BeanProcessor BeanProcessor matches column names to bean property names and converts ResultSet columns into objects for those bean properties.
DbUtils A collection of JDBC helper methods.
ProxyFactory Creates proxy implementations of JDBC interfaces.
QueryLoader QueryLoader is a registry for sets of queries so that multiple copies of the same queries aren't loaded into memory.
QueryRunner Executes SQL queries with pluggable strategies for handling ResultSets.
ResultSetIterator Wraps a ResultSet in an Iterator.
 

Package org.apache.commons.dbutils Description

DbUtils is a small set of classes designed to make working with JDBC easier. JDBC resource cleanup code is mundane, error prone work so these classes abstract out all of the cleanup tasks from your code leaving you with what you really wanted to do with JDBC in the first place: query and update data.

This package contains the core classes and interfaces - DbUtils, QueryRunner and the ResultSetHandler interface should be your first items of interest.



Copyright © 2002-2006 The Apache Software Foundation. All Rights Reserved.