Resultset

The parameter rowValues is a string array of all the values in all the rows. Its size is numRows x numColumns. Results are formatted this way to make it easy for clients to read the data.

Structure
{    
     unsigned int numRows; 
     unsigned int numColumns; 
     StringArray columnNames; 
     StringArray rowValues; 
};
Fields
  • numRows   Number of rows returned.

  • numColumns   Number of columns returned.

  • columnNames   Column names.

  • rowValues   Row values (size == rows x cols).

Remarks

StringArray is an array of strings.