OleDbConnection.Provider 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 le nom du fournisseur OLE DB tel qu'il est spécifié dans la clause "Provider=" de la chaîne de connexion.
public:
property System::String ^ Provider { System::String ^ get(); };
[System.ComponentModel.Browsable(true)]
public string Provider { get; }
[System.Data.DataSysDescription("OleDbConnection_Provider")]
public string Provider { get; }
[<System.ComponentModel.Browsable(true)>]
member this.Provider : string
[<System.Data.DataSysDescription("OleDbConnection_Provider")>]
member this.Provider : string
Public ReadOnly Property Provider As String
Valeur de propriété
Nom du fournisseur tel qu'il est spécifié dans la clause "Provider=" de la chaîne de connexion. La valeur par défaut est une chaîne vide.
- Attributs
Exemples
L’exemple suivant crée un OleDbConnection et affiche certaines de ses propriétés en lecture seule.
static void OpenConnection(string connectionString)
{
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
try
{
connection.Open();
Console.WriteLine("ServerVersion: {0} \nProvider: {1}",
connection.ServerVersion, connection.Provider);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
// The connection is automatically closed when the
// code exits the using block.
}
}
Public Sub OpenConnection(ByVal connectionString As String)
Using connection As New OleDbConnection(connectionString)
Try
connection.Open()
Console.WriteLine("ServerVersion: {0} Provider: {1}", _
connection.ServerVersion, connection.Provider)
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
End Sub