Methods Summary |
---|
public java.lang.String[] | getColumnNames()Return the column names in this row set, in indexed order
return colNames;
|
public java.lang.Object[] | getRow(int index)Return a particular row, indexed from 1..n. Return null if the row
isn't found.
try {
return (Object[]) rows.get(index - 1);
} catch (ArrayIndexOutOfBoundsException aioobe) {
return null;
}
|
public int | getRowCount()
return rows.size();
|
public java.util.Iterator | getRows()Return an iterator containing all of the rows
return rows.iterator();
|