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.

OdbcParameter::SourceVersion Property

 

Gets or sets the DataRowVersion to use when you load Value.

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

public:
property DataRowVersion SourceVersion {
	virtual DataRowVersion get() override;
	virtual void set(DataRowVersion value) override;
}

Property Value

Type: System.Data::DataRowVersion

One of the DataRowVersion values. The default is Current.

The SourceVersion is used by UpdateCommand during an M:System.Data.DbDataAdapter.Common.Update operation to determine whether the parameter value is set to Current or Original. This allows primary keys to be updated.

This property is set to the version of the DataRow used by either the Item property (DataRow indexer), or the GetChildRows method.

The following example creates an OdbcParameter 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