The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
[% USE CSV %]
[% CSV.dump(headings) %]

[% FOREACH row IN results %]
  [% mylist = [] %]
  [% FOREACH col IN columns %]
    [% mylist.push(row.item(col)) %]
  [% END %]
  [% CSV.dump(mylist) %]

[% END %]