in reply to Not able to insert data in mysql
How did you make sure that your XPath expression actually matches nodes?
Consider making DBI die on errors:
my $dbh = DBI->connect($dsn,$username,$password, {RaiseError => 1, Pri +ntError => 0 }) or die "cannotconnect to database : $DBI::errstr";
Also, Basic debugging checklist.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Not able to insert data in mysql
by ashishg0310 (Novice) on May 08, 2014 at 19:16 UTC | |
|
Re^2: Not able to insert data in mysql
by Anonymous Monk on May 08, 2014 at 18:50 UTC | |
by Corion (Patriarch) on May 08, 2014 at 18:55 UTC |