Re: Merging data from two data bases
Längerich, Bernd <[email protected]>
| Newsgroups | gmane.comp.jakarta.ojb.user |
|---|---|
| Message-ID | <[email protected]> |
"Ingrid" Längerich writes:
> The code I tried is like this:
OK, I found out that
Iterator it = masterbroker.getReportQueryIteratorByQuery(masterquery);
Collection taids = new Vector();
while (it.hasNext()) {
Object obj = ((Object[])it.next())[0];
taids.add(obj);
}
is working. Is there a better way to achieve the same result?
Bernd