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

ARRAY [0..gc_MySQL_dwMaxColumns] OF MySQL_CellFormat

Detailed Columns Information

uiRowCount

UINT

Number of Rows in a Dataset

arrRows

ARRAY [0..gc_MySQL_dwMaxRows] OF ARRAY [0..gc_MySQL_dwMaxRowSize] OF BYTE

raw format of selected rows

Last updated