This documentation is archived and is not being maintained.
UpdateRowSource Enumeration
.NET Framework 1.1
Specifies how query command results are applied to the row being updated.
[Visual Basic] <Serializable> Public Enum UpdateRowSource [C#] [Serializable] public enum UpdateRowSource [C++] [Serializable] __value public enum UpdateRowSource [JScript] public Serializable enum UpdateRowSource
Remarks
The UpdateRowSource values are used by the UpdatedRowSource property of IDbCommand and any classes derived from it.
For more information property, see Using Parameters with a DataAdapter.
Members
| Member name | Description |
|---|---|
| Both Supported by the .NET Compact Framework. | Both the output parameters and the first returned row are mapped to the changed row in the DataSet. |
| FirstReturnedRecord Supported by the .NET Compact Framework. | The data in the first returned row is mapped to the changed row in the DataSet. |
| None Supported by the .NET Compact Framework. | Any returned parameters or rows are ignored. |
| OutputParameters Supported by the .NET Compact Framework. | Output parameters are mapped to the changed row in the DataSet. |
Requirements
Namespace: System.Data
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: System.Data (in System.Data.dll)
See Also
Show: