OleDbConnection.Provider 속성

정의

연결 문자열의 "Provider= " 절에 지정된 OLE DB 공급자 이름을 가져옵니다.

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

속성 값

연결 문자열의 "Provider= " 절에 지정된 공급자 이름입니다. 기본값은 빈 문자열입니다.

특성

예제

다음 예제에서는 을 OleDbConnection 만들고 일부 읽기 전용 속성을 표시합니다.

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

적용 대상

추가 정보