public Bank()
{
try
{
// Register the driver to use
DriverManager.registerDriver(new TransactionalDriver());
// Populate the connections properties with the required security credentials
dbProperties = new Properties();
dbProperties.put(TransactionalDriver.userName, BankClient.user);
dbProperties.put(TransactionalDriver.password, BankClient.password);
// Create the transactional driver to use to create the database
arjunaJDBC2Driver = new TransactionalDriver();
// Create the table (will drop an existing table if it already exists)
create_table();
}
catch (Exception e)