in reply to Re: perl mysql - INSERT INTO, 157 columns
in thread perl mysql - INSERT INTO, 157 columns
my $placeholders = join ", ", ("?") x @array; $sth->prepare("insert into bigtable (col...) values ($placeholders)"); $sth->execute(@array);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl mysql - INSERT INTO, 157 columns
by Anonymous Monk on May 01, 2014 at 21:13 UTC |