select property('ProductVersion') into r from dummy when 'CompanyName' then
    select property('CompanyName') into r from dummy when 'LegalCopyright' then
    select property('LegalCopyright') into r from dummy when 'LegalTrades' then
    select property('LegalTrades') into r from dummy when 'FileDescription' then
    select property('ProductName') into r from dummy;
    select property('Platform') into s from dummy;
    set r=r||' '||s
  else
    set r='<unknown>'
  end case
  ;