[]
        
(Showing Draft Content)

C1.DataEngine.Connector.AppendData

AppendData Method

AppendData(string, long)

Append data to the end of a DataEngine table.

Declaration
public abstract long AppendData(string tableName, long count = 0)
Parameters
Type Name Description
string tableName

The name of the DataEngine table.

long count

Optional number of rows to import. If count is 0 (default), import all rows.

Returns
Type Description
long

AppendData(Workspace, IDataReader, string, long)

Append data to the end of a DataEngine table.

Declaration
public static long AppendData(Workspace workspace, IDataReader reader, string tableName, long count = 0)
Parameters
Type Name Description
Workspace workspace

Workspace containing the DataEngine table.

IDataReader reader

Reader providing the data.

string tableName

The name of the DataEngine table.

long count

Optional number of rows to import. If count is 0 (default), import all rows.

Returns
Type Description
long