Help! perl core dumped!

Help! perl core dumped!

I need help!
I run these lines for test, and perl core dumped, who knows why?

#!/usr/bin/perl


use strict;
use warnings;

use DBI;

my $dbh = DBI->connect("DBI:SQLite:dbname=test.db", "", "");


My perl's version info:

>perl -v
This is perl, v5.8.8 built for i386-freebsd-64int
(with 1 registered patch, see perl -V for more detail)

Copyright 1987-2006, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.
试下CPAN上最新的DBI::SQLite
I tried to connect to CSV and mysql, they are ok.

So there is something wrong with DBD::SQLite.