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.
        {{hl}}var ddl = connection.DDL();{{/hl}}

        var si = ddl.{{hl}}ServerInfo(){{/hl}};

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