OdbcConnection.ServerVersion Property

Definition

Gets a string that contains the version of the server to which the client is connected.

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

Property Value

The version of the connected server.

Attributes

Exceptions

The connection is closed.

Remarks

If ServerVersion is not supported by the underlying ODBC driver, an empty string ("") is returned.

The ServerVersion property takes the form '##.##.####,' where the first two digits are the major version, the next two digits are the minor version, and the last four digits are the release version. The driver must render the product version in this form but can also append the product-specific version as a string (for example, "04.01.0000 Rdb 4.1"). This string takes the form 'major.minor.build' where major and minor are exactly two digits and build is exactly four digits.

Applies to

See also