WriteToServer method

Description

Writes data from the data source to the destination table.

Syntax 1

void WriteToServer( DataRow[ ] rows )

Syntax 2

void WriteToServer( DataTable table )

Syntax 3

void WriteToServer( IDataReader reader )

Syntax 4

void WriteToServer( DataTable table, DataRowState rowState )

Parameters

reader An IDataReader. Data from the interface is written to the data source.

rows Rows of data in a DataTable. The data is written to the data source.

rowState Specifies the state a data row must be in for it to be copied.

table A DataTable. Data from this table is written to the data source.