次の方法で共有


ADOAdapterObject インターフェイス

Microsoft ActiveX データ オブジェクトや OLEDB のデータ ソースへの接続を表します。

 

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

構文

'宣言
<GuidAttribute("096cd5d3-0786-11d1-95fa-0080c78ee3bb")> _
<CoClassAttribute(GetType(ADOAdapterObjectWrapper))> _
<CLSCompliantAttribute(False)> _
Public Interface ADOAdapterObject
    Inherits ADOAdapter2, ADOAdapter
'使用
Dim instance As ADOAdapterObject
[GuidAttribute("096cd5d3-0786-11d1-95fa-0080c78ee3bb")] 
[CoClassAttribute(typeof(ADOAdapterObjectWrapper))] 
[CLSCompliantAttribute(false)] 
public interface ADOAdapterObject : ADOAdapter2, ADOAdapter

コメント

この型は、COM 相互運用のためにマネージ コードで必要とされるコクラスのラッパーです。この型を使用して、このコクラスによって実装される COM インターフェイスのメンバにアクセスします。COM インターフェイスについては (このメンバの説明へのリンクを含む)、次を参照してください ADOAdapter2

ADOAdapter オブジェクトは Microsoft Office InfoPath 2007 データ アダプタの種類の 1 つで、外部データ ソースからデータを取得したり外部データ ソースにデータを送信したりするために必要なすべての情報を含んでいます。

ADOAdapter オブジェクトには、データ アダプタの接続文字列、SQL コマンド テキスト、およびタイムアウト値に関する情報を取得したり設定したりするために使用できるプロパティが用意されています。また、指定した XML ノードの属性に基づいて SQL コマンド テキストのフラグメントを作成するためのメソッドも提供されています。

ADO や OLEDB のデータ ソースをフォームのプライマリ データ ソースとして使用している場合、ADOAdapter オブジェクトには、XDocument オブジェクトの QueryAdapter プロパティを使用してアクセスします。

// 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();

関連項目

参照

ADOAdapterObject のメンバ
Microsoft.Office.Interop.InfoPath.SemiTrust 名前空間