OdbcConnection.ServerVersion 属性

定义

获取一个包含客户端所连接到的服务器的版本的字符串。

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

属性值

连接的服务器的版本。

属性

例外

连接已关闭。

注解

如果 ServerVersion 基础 ODBC 驱动程序不支持 ,则返回空字符串 (“”) 。

属性 ServerVersion 采用“##.#.####”格式,其中前两位数字为主要版本,后两位数字为次要版本,最后四位数字为发行版本。 驱动程序必须以此形式呈现产品版本,但也可以将特定于产品的版本追加为字符串 (例如“04.01.0000 Rdb 4.1”) 。 此字符串采用“major.minor.build”的形式,其中 主要次要 正好是两位数, build 正好是四位数。

适用于

另请参阅