[]
        
(Showing Draft Content)

C1.DataEngine.DbConnector.GetData

GetData Method

GetData(Workspace, DataTable, string, long)

Import data to a DataEngine table from an ADO.NET DataTable.

Declaration
public static void GetData(Workspace workspace, DataTable table, string tableName, long count = 0)
Parameters
Type Name Description
Workspace workspace

Workspace containing the DataEngine table.

DataTable table

ADO.NET DataTable to import data from.

string tableName

The name of the DataEngine table.

long count

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

GetData(string, long)

Import data to a DataEngine table.

Declaration
public override void GetData(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.

Overrides