.NET Framework Class Library
DataTable.ImportRow Method

Copies a DataRow into a DataTable, preserving any property settings, as well as original and current values.

Namespace: System.Data
Assembly: System.Data (in system.data.dll)

Syntax

Visual Basic (Declaration)
Public Sub ImportRow ( _
    row As DataRow _
)
Visual Basic (Usage)
Dim instance As DataTable
Dim row As DataRow

instance.ImportRow(row)
C#
public void ImportRow (
    DataRow row
)
C++
public:
void ImportRow (
    DataRow^ row
)
J#
public void ImportRow (
    DataRow row
)
JScript
public function ImportRow (
    row : DataRow
)

Parameters

row

The DataRow to be imported.

Remarks

Calling NewRow adds a row to the table using the existing table schema, but with default values for the row, and sets the DataRowState to Added. Calling ImportRow preserves the existing DataRowState along with other values in the row.

Platforms

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0, 1.0
See Also

Tags :


Page view tracker