The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use warnings FATAL => 'all';
use version;
our $VERSION = '1.04';
use Carp;
# even though this *should* work automatically, it was not
our @CARP_NOT = qw(Prancer Try::Tiny);
sub new {
my $class = shift;
my $self = bless($class->SUPER::new(@_), $class);
try {
require DBD::mysql;
} catch {
my $error = (defined($_) ? $_ : "unknown");
croak "could not initialize database connection '${\$self->{'_connection'}}': could not load DBD::mysql: ${error}";
};
my $database = $self->{'_database'};
my $username = $self->{'_username'};
my $password = $self->{'_password'};
my $hostname = $self->{'_hostname'};
my $port = $self->{'_port'};
my $charset = $self->{'_charset'};
# if autocommit isn't configured then enable it by default
my $autocommit = (defined($self->{'_autocommit'}) ? ($self->{'_autocommit'} =~ /^(1|true|yes)$/ix ? 1 : 0) : 1);
my $dsn = "dbi:mysql:dbname=${database}";
$dsn .= ";host=${hostname}" if defined($hostname);
$dsn .= ";port=${port}" if defined($port);
my $params = {
'AutoCommit' => $autocommit,
'RaiseError' => 1,
'PrintError' => 0,
};
if ($charset && $charset =~ /^utf8$/xi) {
$params->{'mysql_enable_utf8'} = 1;
}
# merge in any additional dsn_params
$params = $self->_merge($params, $self->{'_dsn_extra'});
$self->{'_dsn'} = [ $dsn, $username, $password, $params ];
return $self;
}
1;