Using:
MySQL 5.5 ActivePerl v5.14.1 Windows 7 64bit
The following script has an undefined $DBI::errstr on the failure of the execute call:
#!c:/perl/bin/perl.exe -w
use DBI;
my $dbh = DBI->connect('dbi:mysql:cq','root','password') or die "Connection Error: $DBI::errstr\n";
# This SQL should fail because of a foreign key constraint
my $sql = "delete from Player where ID=6462";
my $sth = $dbh->prepare($sql);
$sth->execute or die "SQL Error: $DBI::errstr\n";
The output when the script is run is:
Use of uninitialized value $DBI::errstr in concatenation (.) or string at testmysql2.pl line 10.
SQL Error:
The SQL run via HeidiSQL provides the expected Foreign Key error: (I can't insert the image as I'm a new user)
The same script run on Windows XP 32-bit provides the expected error:
DBD::mysql::st execute failed: Cannot delete or update a parent row: a foreign key constraint fails (`cq`.`messageboard`, CONSTRAINT `messageboard_ibfk_1` FOREIGN KEY (`PlayerID`) REFERENCES `player` (`ID`)) at testmysql2.pl line 10.
SQL Error2: Cannot delete or update a parent row: a foreign key constraint fails (`cq`.`messageboard`, CONSTRAINT `messageboard_ibfk_1` FOREIGN KEY (`PlayerID`) REFERENCES `player` (`ID`))
Note:
The problem occurs regardless of the SQL, for example a SQL syntax error will also result in an undefined $DBI::errstr
Interestingly a connection error is returned - for example, stop the MySQL service - run the script and the following output is given, as expected:
DBI connect('cq','root',...) failed: Can't connect to MySQL server on 'localhost' (10061) at testmysql2.pl line 4
Connection Error: Can't connect to MySQL server on 'localhost' (10061)
Setting a trace level provides no useful information (for me):
$sth->trace(5, "trace.txt");
$sth->execute or die "SQL Error: $DBI::errstr\n";
with a snippet of trace.txt with some reformatting as:
dbd_st_free_result_sets
mysql_st_internal_execute MYSQL_VERSION_ID 50147
parse_params statement delete from Player where ID=6462
dbd_st_execute returning imp_sth->row_num 18446744073709551614
execute= ( undef ) [1 items] at testmysql2.pl line 11
DESTROY for DBD::mysql::st (DBI::st=HASH(0x29dc0a8)~INNER) thr#2a97e8
Correct SQL operates as expected. I'm guessing this is a bug for Windows 7 64bit? - but I'm unclear/lost as to how to resolve or find the correct place to report/find out definitively.
If you got this far ... thanks for reading!
DBIandDBD::mysql? – mob Sep 15 '11 at 15:37