Is there a module for pushing an array into mysql rows? I checked CPAN, but nothing looked very promising.
Here is the code Im trying - its failing miserably
my @COLUMNS;
push ( @COLUMNS, $_)for ( 1 .. $last_column );
my $column_list = map { print "field$_, " } @COLUMNS;
my $placeholders = { print "?, " for ( 1 .. $last_column ) };
my $insert_data = $dbh->prepare(<<SQL);
insert into $filename ($column_list) values ($placeholders)
SQL
foreach (<DATAFILE>)
{
my (@ROW) = split /,/, $_;
my $row_list = map { print "\'$_\', " } @ROW;
$insert_data->execute($row_list);
}
here is the error
DBD::mysql::db do failed: You have an error in your SQL syntax; check
+the manual that corresponds to your MySQL server version for the righ
+t syntax to use near '61 ) VALUES ( 61 )' at line 1 at ./generatefil
+es.pl line 87, <DATAFILE> line 467.
Thanks in advance for any help
Ted
--
"That which we persist in doing becomes easier, not that the task itself has become easier, but that our ability to perform it has improved."
--Ralph Waldo Emerson
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.