# MySQL\_DataSet

## `MySQL_DataSet` (STRUCT)

TYPE MySQL\_DataSet : STRUCT

This structure contains the response data of a successfully executed SELECT statement in a sanitized format. To display the selected data in a readable format, use "MySQL\_GetStringValue" to access the raw data and convert it into a readable string.

InOut:

| Name            | Type                                                                                               | Comment                        |
| --------------- | -------------------------------------------------------------------------------------------------- | ------------------------------ |
| `uiColumnCount` | `UINT`                                                                                             | Number of Columns in a Dataset |
| `arrColumns`    | <p>ARRAY<br>\[0..gc\_MySQL\_dwMaxColumns]<br>OF MySQL\_CellFormat</p>                              | Detailed Columns Information   |
| `uiRowCount`    | `UINT`                                                                                             | Number of Rows in a Dataset    |
| `arrRows`       | <p>ARRAY<br>\[0..gc\_MySQL\_dwMaxRows]<br>OF ARRAY<br>\[0..gc\_MySQL\_dwMaxRowSize]<br>OF BYTE</p> | raw format of selected rows    |
