Package org.genericdao

Class Summary
ConnectionPool  
GenericDAO<B> This class is used to read and write rows of a database table that correspond to instances of a JavaBean of type B.
GenericViewDAO<B>  
MatchArg A class to specify constraints when matching beans.
Transaction This class is used to begin and end transactions.
Version  
 

Exception Summary
DAOException The exception typically thrown by non-CRUD methods in the GenericDAO package.
DuplicateKeyException The exception thrown by a CRUD method (typically from the create() method) to signal an attempt to create a new bean in a table that has the same primary key as an existing bean.
RollbackException The exception thrown when a CRUD method encounters a problem, such as not being able to connect to the database, deadlock, when invalid parameters are passed, etc.
 

Annotation Types Summary
MaxSize The annotation used specify the maximum length of a String property stored in the database.
PrimaryKey The annotation used declare the primary key properties of a Java Bean.
 



Copyright © 2012 Jeffrey L. Eppinger. All rights reserved. Permission granted for educational use only.