次の方法で共有


ADOAdapter2.Command プロパティ

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

このプロパティは、CLS に準拠していません。  

名前空間: Microsoft.Office.Interop.InfoPath.SemiTrust
アセンブリ: Microsoft.Office.Interop.InfoPath.SemiTrust (microsoft.office.interop.infopath.semitrust.dll 内)

構文

'宣言
<DispIdAttribute(6)> _
Property Command As String
'使用
Dim instance As ADOAdapter2
Dim value As String

value = instance.Command

instance.Command = value
[DispIdAttribute(6)] 
string Command { get; set; }

コメント

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

メモメモ :

ADOAdapter オブジェクトは、Microsoft SQL Server データベースおよび Microsoft Access データベースでのみ使用できるように制限されています。

メモ重要 :

このメンバは、現在開いているフォームと同じドメイン内で実行されているフォーム、またはドメインを越えたアクセス許可を付与されているフォームだけがアクセスできます。

次の例では、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.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 名前空間