ADOAdapter2.Query メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられたデータ アダプターからデータを読み取ります。
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、クエリは失敗します。