Retrieves the info of the database product. This method may needs some privilege according to the database product and its version. Return
ServerInfo Description
Name Name of the database product.
Version Version of the database product.
Examples Following section retrieves the product info from database server.
        using(var exc = cn.Executer()) 
        {
            var si = exc.ServerInfo();

            Console.WriteLine("Name = " + si.Name);
            Console.WriteLine("Version = " + si.Version);
        }
    
Name = Express Edition (64-bit)
Version = 13.0.5102.14
jJ0DZ7