Retrieves the info of the database product.
| ServerInfo | Description |
|---|---|
| Name | Name of the database product. |
| Version | Version of the database product. |
using(var exc = cn.Executer())
{
var si = exc.ServerInfo();
Console.WriteLine("Name = " + si.Name);
Console.WriteLine("Version = " + si.Version);
}