Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IDataParameter::SourceVersion Property

 

Gets or sets the DataRowVersion to use when loading Value.

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

property DataRowVersion SourceVersion {
	DataRowVersion get();
	void set(DataRowVersion value);
}

Property Value

Type: System.Data::DataRowVersion

One of the DataRowVersion values. The default is Current.

Exception Condition
ArgumentException

The property was not set one of the DataRowVersion values.

This property is used by the UpdateCommand during the Update to determine whether the original or current value is used for a parameter value. This allows primary keys to be updated. This property is ignored by the InsertCommand and DeleteCommand. This property is set to the version of the DataRow used by the Item property, or the GetChildRows method of the DataRow object.

The following example creates an instance of the implementing class, SqlParameter, and sets some of its properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft