Russ Tennant wrote:
> It appears the result set is considered closed even though
> ResultSet.next() returns true in this case.
Uh, you are calling getString on a different ResultSet to the one you
called next() on:
> ResultSet rstVersionColumns=meta.getVersionColumns(null, null, tableName);
>
> while (rstVersionColumns.next())
>
> {
>
> String fieldName=rstColumn.getString("COLUMN_NAME"); // Exception thrown
> here
-O