con = DriverManager.getConnection(connUrl);
}
public void init() throws SQLException, ClassNotFoundException {
ServerConfigLookup lookup = new ServerConfigLookup();
String connUrl = lookup.getConnectionURLFromConfig();
String password = lookup.getConnectionPasswordFromConfig();
String user = lookup.getConnectionUserFromConfig();
//message("connUrl:" + connUrl + " password:" + password + " user:" + user);
this.init(connUrl, user, password);
}