Source Code of Data Access Object (DAO): for each table, the corresponding Data Access Object (DAO) 
will bw gerenated. The DAO contains has attributes corresponding to columns in the table, as well as 
get() and set() methods for each attribute (column). 

Furhtermore, each generated DAO has the following FOUR methods: 
(1) public void setAttributes(java.sql.ResultSet result) throws SQLException; 
    which will set all the attributes in the JavaBean directly from a query result. 
(2) public void insertDatabase(java.sql.Connection conn) throws SQLException;
    which will insert the JavaBean into the SQL database. 
(3) public void updateDatabase(java.sql.Connection conn) throws SQLException;
    which will write the update of the DAO into the SQL database. 
(4) public String toString();
    which overwrite the default toString() method to print out the values of attributes. 

An example of DAO generated by DB Cruiser: EmpDAO.java, can be found in this package. 
An example of how to use generated JavaBean, EmpDAOTest.java, is also included in this package.

You can get all these by just a mouse clicking (in DB Cruiser). Therefore, using DB Cruiser will 
greatly reduce the Java development effort and time. 
