IDatabaseExtractorEnumerateTableRows Method |
Enumerates a table's row data one row at a time.
Namespace: OpenDiscoverSDK.Interfaces.ExtractorsAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
SyntaxIEnumerable<Object[]> EnumerateTableRows(
TableInfo table,
List<int> columnIndices = null
)
Parameters
- table TableInfo
- The table whose rows are to be enumerated (column data extracted one row at a time).
- columnIndices ListInt32 (Optional)
-
If null (default value) all row column values are returned in order; if non-null, this list must contain valid zero-offset column indices for the columns
that are to be returned (in this case the returned object array will have same length as the number of items in this argumen).
Return Value
IEnumerableObject
Column data for the row as an object array.
See Also