Match #1: /hsqldb/src/org/hsqldb/util/TransferDb.java: line 377-384 /java/7643576-7643625-1: line 3-7 //Looping through result set values. Result Set are actually contains multiple rows of data, and use a cursor to point out current position. Change to next row. < while (result.next()) { < String name = result.getString(3); < String type = result.getString(4); < String schema = ""; < < if (sSchemas != null && sSchemas[SchemaIdx] != null) { < schema = sSchemas[SchemaIdx]; < } --- >while (rs.next()) { > String sid = rs.getString(1); > String lid = rs.getString(2); > // Do whatever you want to do with these 2 values >}