in reply to Re: Perl DBI and mySQL
in thread Perl DBI and mySQL

Many thanks,
the trick
my $values = join(",",map { $dbh->quote($_) } @values);
worked well.

I will have to read up on both the ",map" part of the join statement you supplied and the $dbh->quote($_) function of DBI :)
Thank you