次の方法で共有


ADOAdapter2.Connection プロパティ

定義

オブジェクトに使用される接続文字列を ADOAdapterObject 取得または設定します。

public:
 property System::String ^ Connection { System::String ^ get(); void set(System::String ^ value); };
public string Connection { get; set; }
member this.Connection : string with get, set
Public Property Connection As String

プロパティ値

実装

// retrieve the Employees Adapter from the DataAdapters collection
ADOAdapter employeesDA = (ADOAdapter)thisXDocument.DataAdapters["Employees"];
// Get new server name from the main DOM
string newServer = thisXDocument.DOM.selectSingleNode("//my:serverName").text;
// build new connection string
string connectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;";
connectionString += "Initial Catalog=SalesDB;Data Source=" + newServer;
// set new connection string
employeesDA.<span class="label">Connection </span>= connectionString;
// query the data source again
DataObject employeesDO = thisXDocument.DataObjects["Employees"];
employeesDO.Query();

注釈

ADOAdapter オブジェクトの Connection プロパティには、ADO データ アダプターが ActiveX データ オブジェクト/OLEDB 外部データ ソースに接続するのに使用する接続文字列が含まれています。

: ADOAdapter オブジェクトは、Microsoft SQL Server データベースと Microsoft Access データベースでのみ動作するように制限されています。

適用対象