Edit

Share via


OleDbParameter.SourceVersion Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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

C#
public override System.Data.DataRowVersion SourceVersion { get; set; }
C#
[System.Data.DataSysDescription("DataParameter_SourceVersion")]
public System.Data.DataRowVersion SourceVersion { get; set; }

Property Value

One of the DataRowVersion values. The default is Current.

Implements

Attributes

Exceptions

The property was not set to one of the DataRowVersion values.

Examples

The following example creates an OleDbParameter and sets some of its properties.

C#
public void CreateOleDbParameter()
 {
    OleDbParameter parameter = new OleDbParameter("Description", OleDbType.VarChar, 88);
    parameter.SourceColumn = "Description";
    parameter.SourceVersion = DataRowVersion.Current;
 }

Remarks

Used by UpdateCommand during an update operation to determine whether the parameter value is set to Current or Original. This lets primary keys be updated. This property is set to the version of the DataRow used by the Item[] property, or the GetChildRows method of the DataRow object.

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also