FlexPivot for WPF | ComponentOne
C1.DataEngine Assembly / C1.DataEngine Namespace / DbConnector Class / GetData Method / GetData(Workspace,DataTable,String,Int64) Method
Workspace containing the DataEngine table.
ADO.NET DataTable to import data from.
The name of the DataEngine table.
Optional number of rows to import. If count is 0 (default), import all rows.

In This Topic
    GetData(Workspace,DataTable,String,Int64) Method
    In This Topic
    Import data to a DataEngine table from an ADO.NET DataTable.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub GetData( _
       ByVal workspace As Workspace, _
       ByVal table As DataTable, _
       ByVal tableName As String, _
       Optional ByVal count As Long _
    ) 
    public static void GetData( 
       Workspace workspace,
       DataTable table,
       string tableName,
       long count
    )

    Parameters

    workspace
    Workspace containing the DataEngine table.
    table
    ADO.NET DataTable to import data from.
    tableName
    The name of the DataEngine table.
    count
    Optional number of rows to import. If count is 0 (default), import all rows.
    See Also