in reply to DBIx::Dump error - can't use string as subroutine ref
So it's just attempting to exec a function associated with the 'format' query you provide, but it doesn't check to see if it's a valid function first. The CPAN docs don't say what functions are valid, but on lines 137-141 of Dump.pm you can see:$formats{$self->{'format'}}->($self);
Which shows you the valid strings it will take as formats.my %formats = ( 'excel' => $excel, 'csv' => $csv, 'iQuery' => $iQuery );
|
|---|