void initialize(String driver, String connectionstring, String username,
String password) throws SQLException
{
this.connectionString = connectionstring;
// create the pool
connectionPool = new DataConnectionPool(1, driver, connectionstring,
username, password);
// set up the default adapter
adapter = selectAdapter(connectionstring);
LOGGER.fine("Selected adapter: "
+ ObjectTools.getSystemicName(adapter.getClass())