OdbcConnection::ServerVersion Property
Gets a string that contains the version of the server to which the client is connected.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property String^ ServerVersion { virtual String^ get() override; }
| Exception | Condition |
|---|---|
| InvalidOperationException | The connection is closed. |
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.
Available since 1.1