OleDbParameter.SourceVersion Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví DataRowVersion na použití při načtení Value.
public:
virtual property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public:
property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public override System.Data.DataRowVersion SourceVersion { get; set; }
[System.Data.DataSysDescription("DataParameter_SourceVersion")]
public System.Data.DataRowVersion SourceVersion { get; set; }
member this.SourceVersion : System.Data.DataRowVersion with get, set
[<System.Data.DataSysDescription("DataParameter_SourceVersion")>]
member this.SourceVersion : System.Data.DataRowVersion with get, set
Public Overrides Property SourceVersion As DataRowVersion
Public Property SourceVersion As DataRowVersion
Hodnota vlastnosti
Jedna z DataRowVersion hodnot. Výchozí formát je Current
.
Implementuje
- Atributy
Výjimky
Vlastnost nebyla nastavena na jednu z DataRowVersion hodnot.
Příklady
Následující příklad vytvoří OleDbParameter a nastaví některé jeho vlastnosti.
Public Sub CreateOleDbParameter()
Dim parameter As New OleDbParameter("Description", OleDbType.VarChar, 88)
parameter.SourceColumn = "Description"
parameter.SourceVersion = DataRowVersion.Current
End Sub
public void CreateOleDbParameter()
{
OleDbParameter parameter = new OleDbParameter("Description", OleDbType.VarChar, 88);
parameter.SourceColumn = "Description";
parameter.SourceVersion = DataRowVersion.Current;
}
Poznámky
Používá se UpdateCommand během operace aktualizace k určení, jestli je hodnota parametru nastavená na Current
nebo Original
. To umožňuje aktualizaci primárních klíčů. Tato vlastnost je nastavena na verzi DataRow použité Item[] vlastností nebo metodu GetChildRows objektu DataRow .