Subject: | selectall_hashref crashes perl on win32 using threads |
OS: Windows XP Prof, SP 1
Perl: ActivePerl 5.8.6.811
DBI: 1.47
DBD: DBD-mysql, 2.9003
the attached code leads to an access-violation in perl.exe (perl58.dll) when the script returns.
use strict;
use threads;
use DBI;
my $dbh = DBI->connect ( 'dbi:mysql:database=mysql:host=...', '...', '...' );
$dbh->selectall_hashref ( 'SELECT * from user', 'Host' );
$dbh->disconnect ();