OdbcParameter.SourceColumn 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
virtual property System::String ^ SourceColumn { System::String ^ get(); void set(System::String ^ value); };
public:
property System::String ^ SourceColumn { System::String ^ get(); void set(System::String ^ value); };
public override string SourceColumn { get; set; }
public string SourceColumn { get; set; }
member this.SourceColumn : string with get, set
Public Overrides Property SourceColumn As String
Public Property SourceColumn As String
屬性值
來源資料行的名稱,要用來設定這個參數的值。 預設為空字串 ("")。
實作
範例
下列範例會 OdbcParameter 建立 並設定其部分屬性。
Public Sub CreateOdbcParameter()
Dim parameter As New OdbcParameter("Description", OdbcType.VarChar, 88)
parameter.SourceColumn = "Description"
End Sub
public void CreateOdbcParameter()
{
OdbcParameter parameter = new OdbcParameter("Description", OdbcType.VarChar, 88);
parameter.SourceColumn = "Description";
}
備註
當 SourceColumn 設定為空字串以外的任何專案時,會從名稱 SourceColumn
為的數據行擷取 參數的值。 如果 Direction 設定為 Input
,則值取自 DataSet。 如果 Direction
設定為 Output
,則會取自數據源的值。
Direction
的 InputOutput
是兩者的組合。
如需如何使用 SourceColumn 屬性的詳細資訊,請參閱 DataAdapter 參數和使用 DataAdapters 更新數據源。