ADOAdapter2.Connection Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la chaîne de connexion utilisée pour un ADOAdapterObject objet .
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
Valeur de propriété
Implémente
Exemples
// 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();
Remarques
La propriété Connection de l'objet ADOAdapter contient la chaîne de connexion utilisée par l'adaptateur de données ADO pour se connecter à une source de données externe ADO/OLEDB.
Remarque : L’objet ADOAdapter est limité pour fonctionner uniquement avec les bases de données Microsoft SQL Server et Microsoft Access.