次の方法で共有


ADOAdapter2.Query メソッド

定義

関連付けられたデータ アダプターからデータを読み取ります。

public:
 void Query();
public void Query ();
abstract member Query : unit -> unit
Public Sub Query ()

次の例では、オブジェクトの Query メソッドを ADOAdapterObject 使用して、セカンダリ データ ソース "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.Command = "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.<span class="label">Query</span>();

注釈

が false の場合QueryAllowed、クエリは失敗します。

適用対象