Subject: | Cannot supply array of arrayrefs to addRow |
It would be nice if addRow() (or possibly a new method like addRows(), whatever is easiest) could accept arrays of arrays:
$t->addRow([
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ],
]);
This would be really helpful, because such functionality would allow it to swallow the output from DBI::selectall_arrayref($sql) with no intermediate make-work code.