Retrieves the info of the database product.
| ServerInfo | Description |
|---|---|
| Name | Name of the database product. |
| Version | Version of the database product. |
{{hl}}var ddl = connection.DDL();{{/hl}}
var si = ddl.{{hl}}ServerInfo(){{/hl}};
Console.WriteLine("Name = " + si.Name);
Console.WriteLine("Version = " + si.Version);