Help for this page
my $sth = $dbh_in->prepare(" INSERT INTO my_table ( ... $sth->execute(@fields[0..3]); $sth->execute((@fields, undef, undef, undef, undef)[0..3]);
my $sth = $dbh_in->prepare(" INSERT INTO my_table ( ... "); $sth->execute(@fields);