change
This commit is contained in:
parent
15229d141b
commit
765537affb
|
@ -44,9 +44,10 @@ public class TSDBJNIConnectorTest {
|
|||
}
|
||||
rowData = new TSDBResultSetRowData(columnSize);
|
||||
// iterate resultSet
|
||||
while (next(connector, pSql)) {
|
||||
System.out.println(rowData.getColSize());
|
||||
rowData.getData().stream().forEach(System.out::println);
|
||||
for (int i = 0; next(connector, pSql); i++) {
|
||||
System.out.println("col[" + i + "] size: " + rowData.getColSize());
|
||||
rowData.getData().stream().forEach(col -> System.out.print(col + "\t"));
|
||||
System.out.println();
|
||||
}
|
||||
// close resultSet
|
||||
code = connector.freeResultSet(pSql);
|
||||
|
|
Loading…
Reference in New Issue