this.password = config.getMIString(instanceId, "Bugzilla", "dbpassword");
}
@Override
public void checkDatabase(int defectId, String shortDescription, String longDescription, String assignee) throws Exception {
jdbcClient = new JDBCClientImpl(jdbcDriver, jdbcURL, user, password);
jdbcClient.open();
ResultSet result = jdbcClient.executeQuery("select profiles.login_name, bugs.short_desc, longdescs.thetext " +
"from profiles, bugs, longdescs " +
"where bugs.bug_id = " + defectId + " and profiles.userid = bugs.assigned_to and longdescs.bug_id = " + defectId);