DataEngine for .NET Standard | ComponentOne
C1.DataEngine Assembly / C1.DataEngine Namespace / Connector Class / AppendData Method / AppendData(Workspace,IDataReader,String,Int64) Method
Workspace containing the DataEngine table.
Reader providing the data.
The name of the DataEngine table.
Optional number of rows to import. If count is 0 (default), import all rows.

In This Topic
    AppendData(Workspace,IDataReader,String,Int64) Method
    In This Topic
    Append data to the end of a DataEngine table.
    Syntax
    'Declaration
     
    Public Overloads Shared Function AppendData( _
       ByVal workspace As Workspace, _
       ByVal reader As IDataReader, _
       ByVal tableName As String, _
       Optional ByVal count As Long _
    ) As Long
    public static long AppendData( 
       Workspace workspace,
       IDataReader reader,
       string tableName,
       long count
    )

    Parameters

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