次の方法で共有


ADOAdapter2.Command プロパティ

定義

オブジェクトの SQL コマンド文字列テキストを ADOAdapterObject 取得または設定します。

public:
 property System::String ^ Command { System::String ^ get(); void set(System::String ^ value); };
public string Command { get; set; }
member this.Command : string with get, set
Public Property Command As String

プロパティ値

実装

次の例では、ADOAdapter オブジェクトの Command プロパティを使用して、セカンダリ データ ソース "Employees" 経由で Northwind データベースの Employees テーブルにクエリを送信しています。 返されるレコードの は EmployeeID 、ノードの値と my:field2 一致します。 この例では、メイン データ ソースで、次のコードを呼び出すボタンを含むビューのテキスト ボックスにバインドする必要 my:field2 があります。

// retrieve the Employees Adapter from the DataAdapters collection
ADOAdapter employeesDA = (ADOAdapter)thisXDocument.DataAdapters["Employees"];
// get employee’s ID from the main DOM
string employeeID = thisXDocument.DOM.selectSingleNode("//my:field2").text;
// Change the ADOAdapter’s command to retrieve the record of the Employee’s ID entered
// by the user
employeesDA.<span class="label">Command </span>= "select * from Employees where EmployeeID = " + employeeID;
// get DataObject from the DataObjects collection and call Query to refresh
// the data object
DataObject employeesDO = thisXDocument.DataObjects["Employees"];
employeesDO.Query();

注釈

ADOAdapter オブジェクトの Command プロパティには、ADO データ アダプターが ActiveX データ オブジェクト/OLEDB 外部データ ソースとデータを送受信するのに使用する SQL コマンド文字列が含まれています。

: ADOAdapter オブジェクトは、Microsoft SQL Server データベースと Microsoft Access データベースでのみ動作するように制限されています。

適用対象