List of usage examples for javax.sql RowSet getRow
int getRow() throws SQLException;
From source file:Main.java
static void displayRowSet(RowSet rs) throws SQLException { while (rs.next()) { System.out.println(rs.getRow() + " - " + rs.getString("col1") + ":" + rs.getInt("col2") + ":" + rs.getString("col3")); }/*from w ww . ja va2 s.c o m*/ }