* Make RowSet a public static class to allow its methods to be called by Rhino.

This commit is contained in:
hns 2006-11-24 10:28:15 +00:00
parent a40d1191ab
commit a38f504db3

View file

@ -259,13 +259,11 @@ public class DatabaseObject {
} }
return databaseMetaData; return databaseMetaData;
} }
}
/**
/**
* A RowSet object * A RowSet object
*/ */
class RowSet { public static class RowSet {
private transient String sql = null; private transient String sql = null;
private transient Statement statement = null; private transient Statement statement = null;
@ -628,4 +626,8 @@ class RowSet {
(firstRowSeen ? "]" : " - at start]"))); (firstRowSeen ? "]" : " - at start]")));
} }
}
} }