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 属性。 如果 ServerVersion 基础 OLE DB 访问接口不支持 ,则返回空字符串。

版本格式为 ##.##.##,其中前两位数字为主版本,后两位数字为次要版本,最后四位数字为发行版本。 提供程序必须在此窗体中呈现产品版本,但也可以追加特定于产品的版本-例如,“04.01.0000 Rdb 4.1”。 字符串的格式为 major.minor.build,其中 major 和 minor 正好是两位数,build 正好是四位数。

适用于

另请参阅