in reply to Re: error ..ON DUPLICATE KEY UPDATE value='''
in thread error ..ON DUPLICATE KEY UPDATE value='''
Have you got DBI's RasieError set? Look for a call to DBI->connect and see if RaiseError => 1. If yes, then your call to do on line 14 just before your Dumper call will die and all your seeing in the Dumper output is from the last successful call and not the one that is failing. If so do:
eval { $dbh->do($sql); }; if (my $ev = $@) { print Dumper($sq); die $ev; }
Now you'll only get Dumper output for the failing case.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: error ..ON DUPLICATE KEY UPDATE value='''
by nafri (Initiate) on Aug 02, 2013 at 23:09 UTC | |
by runrig (Abbot) on Aug 02, 2013 at 23:18 UTC | |
by nafri (Initiate) on Aug 03, 2013 at 13:35 UTC |