ADOAdapter2.Query メソッド
関連付けられたデータ アダプタからデータを読み取ります。
このメソッドは、CLS に準拠していません。
名前空間: Microsoft.Office.Interop.InfoPath.SemiTrust
アセンブリ: Microsoft.Office.Interop.InfoPath.SemiTrust (microsoft.office.interop.infopath.semitrust.dll 内)
構文
'宣言
<DispIdAttribute(12)> _
Sub Query
'使用
Dim instance As ADOAdapter2
instance.Query
[DispIdAttribute(12)]
void Query ()
コメント
QueryAllowed が false の場合は、クエリが失敗します。
重要 : |
---|
このメンバは、現在開いているフォームと同じドメイン内で実行されているフォーム、またはドメインを越えたアクセス許可を付与されているフォームだけがアクセスできます。 |
例
次の例では、ADOAdapterObject オブジェクトの Query メソッドを使用して、セカンダリ データ ソース "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.Query();
関連項目
参照
ADOAdapter2 インターフェイス
ADOAdapter2 のメンバ
Microsoft.Office.Interop.InfoPath.SemiTrust 名前空間