// The reference must be injected by the container using the xml
// descriptor, so the jdbc_2 must be injected.
checkResource(sessionContext, ds04, "jdbc/ds04");
TableManager cTest00 = new TableManager(dsInjection02);
TableManager cTest01 = new TableManager(ds05);
try {
// It must create twice the table, because each is in a different
// database.
cTest00.insertTable("ds04");
cTest01.insertTable("ds04");
cTest00.deleteTable("ds04");
cTest01.deleteTable("ds04");
} catch (Exception e) {
throw new IllegalStateException("Exception: " + e.getMessage());
}
}