OleDbConnection.ServerVersion プロパティ

定義

クライアントが接続しているサーバーのバージョンが示された文字列を取得します。

public:
 virtual property System::String ^ ServerVersion { System::String ^ get(); };
public:
 property System::String ^ ServerVersion { System::String ^ get(); };
public override string ServerVersion { get; }
[System.ComponentModel.Browsable(false)]
[System.Data.DataSysDescription("OleDbConnection_ServerVersion")]
public string ServerVersion { get; }
member this.ServerVersion : string
[<System.ComponentModel.Browsable(false)>]
[<System.Data.DataSysDescription("OleDbConnection_ServerVersion")>]
member this.ServerVersion : string
Public Overrides ReadOnly Property ServerVersion As String
Public ReadOnly Property ServerVersion As String

プロパティ値

接続されているサーバーのバージョン。

属性

例外

接続が閉じています。

次の例では、 を OleDbConnection 作成し、その読み取り専用プロパティの一部を表示します。

static void OpenConnection(string connectionString)
{
    using (OleDbConnection connection = new OleDbConnection(connectionString))
    {
        try
        {
            connection.Open();
            Console.WriteLine("ServerVersion: {0}", connection.ServerVersion);
        }
        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}", connection.ServerVersion)

        Catch ex As Exception
            Console.WriteLine(ex.Message)
        End Try
    End Using
End Sub

注釈

プロパティは ServerVersion OLE DB DBPROP_DBMSVER プロパティにマップされます。 が基になる OLE DB プロバイダーでサポートされていない場合 ServerVersion は、空の文字列が返されます。

バージョンは ##.##.#### という形式で、最初の 2 桁はメジャー バージョン、次の 2 桁はマイナー バージョン、最後の 4 桁はリリース バージョンです。 プロバイダーは製品バージョンをこの形式でレンダリングする必要がありますが、製品固有のバージョン ("04.01.0000 Rdb 4.1" など) を追加することもできます。 文字列は major.minor.build という形式で、major と minor は正確に 2 桁で、ビルドは正確に 4 桁です。

適用対象

こちらもご覧ください