ADOAdapter2.Connection プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オブジェクトに使用される接続文字列を 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 データベースでのみ動作するように制限されています。