Big Java example project "bank"

You can use this project as follows:

 - invoke the main method of the driver class ATMSimulation by 
 right-clicking on the class representation and selecting the main method.
 - you will need to provide 1 argument: the name of the database properties
 file containing information about the database jdbc drivers
 - in BlueJ you provide arguments to the main method by initialising a String 
 array as the parameter to the main method.  For example:  
    {"database.properties"}
 - you will need to ensure that the jdbc drivers are included in BlueJ's classpath
 - the database.properties file may need editing to suit your database.
 - you will need to check on any further configuration information
 from the supplier of your database.

Further information may be available at http://www.horstmann.com/bigj/faq.html 
 
This project illustrates concepts covered in Big Java, Chapter 25 
"Relational Databases".
  
 - to learn how to query a database with the Structured Query Language (SQL)
 - to connect to databases with Java Database Connectivity (JDBC)
 - to write database programs that insert, update, and query data in a relational database