in reply to Re: Skip problematic lines while populating database
in thread Skip problematic lines while populating database

$sth_insert->execute( @$row );

The only thing to look out for here is that there is a gap in the sequence of elements to be inserted. One might write instead (untested):
    $sth_insert->execute(@{ $row }[ 0 .. 4, 6 .. 25 ]);


Give a man a fish:  <%-{-{-{-<