OracleParameter.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.
public:
property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public:
virtual property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public System.Data.DataRowVersion SourceVersion { get; set; }
public override System.Data.DataRowVersion SourceVersion { get; set; }
member this.SourceVersion : System.Data.DataRowVersion with get, set
Public Property SourceVersion As DataRowVersion
Public Overrides Property SourceVersion As DataRowVersion
Property Value
One of the DataRowVersion values. The default is Current
.
Implements
Examples
The following example creates a OracleParameter and sets some of its properties.
Public Sub CreateOracleParameter()
Dim parameter As New OracleParameter("pDName", OracleType.VarChar)
parameter.IsNullable = True
parameter.SourceColumn = "Description"
parameter.SourceVersion = DataRowVersion.Current
parameter.Direction = ParameterDirection.Output
End Sub
public void CreateOracleParameter()
{
OracleParameter parameter = new OracleParameter("pDName", OracleType.VarChar);
parameter.IsNullable = true;
parameter.SourceColumn = "Description";
parameter.SourceVersion = DataRowVersion.Current;
parameter.Direction = ParameterDirection.Output;
}
Remarks
This property is used by the UpdateCommand during the DbDataAdapter.Update to determine whether the original or current value is used for a parameter value. This lets primary keys be updated. This property is set to the version of the DataRow used by the DataRow.Item[] property (DataRow indexer), or the DataRow.GetChildRows method of the DataRow object.