in reply to Re: Use of uninitialized value in join or string
in thread Use of uninitialized value in join or string
Many thanks for explaining how useful placeholders are to me, @roboticus
I have replaced code:
while (my $row = $csv->getline($fh)) { $prep = $db->prepare("INSERT INTO $table VALUES (\"" . joi +n('","', $csv->fields()) . "\")") or die "Cannot prepare database " . $db->errstr() +. "\n"; if (!$prep->execute()) { die "Failed to write row " . $db- +>errstr() . "\n"; } }
with the code that you have suggested to me, but the script produces another error:
DBD::mysql::st execute failed: Column count doesn't match value count at row 1 at ./test.pl line 85, <$fh> line 2.and so on for every record of the file to be imported.
which makes no sense to me, as from my understanding when I use map { expr } list, it evaluates expr for every item in list, so it should update the list automatically, isn't that right?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Use of uninitialized value in join or string
by hippo (Archbishop) on Jan 29, 2014 at 13:20 UTC | |
by domaniqs (Initiate) on Jan 29, 2014 at 13:36 UTC | |
by hippo (Archbishop) on Jan 29, 2014 at 13:56 UTC |