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

[% WHILE (row = results.next) %]
  [% mylist = [] %]
  [% mylist.push(row.channel) %]
  [% mylist.push(row.get_column('ch_count')) %]
  [% CSV.dump(mylist) %]

[% END %]