ResultSet
Represents the results of a SQL query.
It contains a list for the column names of the results, and a list of JsonArray
- one for each row of the
results.
Name |
Type |
Description |
|
Get the column names |
|
|
Return the number of columns in the result set |
|
|
Return the number of rows in the result set |
|
|
Get the registered outputs |
|
|
Get the results |
|
|
Get the rows - each row represented as a JsonObject where the keys are the column names and the values are the column values. Beware that it's legal for a query result in SQL to contain duplicate column names, in which case one will overwrite the other if using this method. If that's the case use link instead. |