UpdatedRowSource property

Gets or sets how command results are applied to the DataRow when used by the Update method of the SADataAdapter.

Syntax
Visual Basic

Public Overrides Property UpdatedRowSource As UpdateRowSource
C#

public override UpdateRowSource UpdatedRowSource { get; set; }
Property value

One of the UpdatedRowSource values. The default value is UpdateRowSource.OutputParameters. If the command is automatically generated, this property is UpdateRowSource.None.

Remarks

UpdatedRowSource.Both, which returns both resultset and output parameters, is not supported.

See also