Gets or sets MySQL server version string.
'Declaration
Public Property ServerVersion As System.String
'Usage
Dim instance As MySQLSyntaxProvider
Dim value As System.String
instance.ServerVersion = value
value = instance.ServerVersion
public System.string ServerVersion {get; set;}
public: __property System.string* get_ServerVersion();
public: __property void set_ServerVersion(
System.string* value
);
Property Value
The value of this property is string represenation of the ServerVersionInt property split with dots by two digits. I.e. for MySQL version 5.1.93, the value of this property will be "5.01.93".