Solution
When arrays are stored in a database by TestStand, the array data is saved in binary format in the PROP_BINARY table, not in the PROP_RESULT table itself. You can view the binary data in the Database Viewer:
- In the Database Explorer pane, navigate to Default»Tables»PROP_BINARY
- Right-click on PROP_BINARY and select View Data
- In the Results tab, you should see the a row for each binary result stored in the table
- Double click on the Binary Data value under the Data column to open the the View Binary Data dialog. This window will show you the numeric values in a table, a graph, or you can click on the Memory tab to see the raw bytes.
The array data is written by concatenating the binary representation of each numeric value in the array. By default, numeric values are stored in R8 (8-byte floating point) format and little-Endian byte order.