Strategy ONE
Table
Object for connector to append data. It is passed to fetchTable at the fetch phase.
tableSchema
tableSchema: TableSchema
If connector wants to use table.appendFormattedData, table.tableSchema MUST be defined. There are two ways to set tableSchema: use tableList before submit, or in the fetchTable function.
appendFormattedData
appendFormattedData(rows: array<JSON object>): void
Append actual data to table. By using this method, users can focus on data fields that they are interested in.
appendRawData
appendRawData(data: string): void
When this method is used, the connector simply appends the entire content of a file to the table. MicroStrategy takes responsibility for detecting the file type and parsing the content into tabular data.