The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

GenOO::DB::Connector - Connector to database object, with features

SYNOPSIS

    # Initializes a connection to a user provided database through perl DBI
    my $dbconn = GenOO::DB::Connector->new({
        driver   => undef,
        host     => undef,
        database => undef,
        user     => undef,
        port     => undef,
    });

DESCRIPTION

    Not provided yet

EXAMPLES

    # Get the DBI handle
    my $dbh = $dbconn->handle;
    $dbh->do("CREATE TABLE foo")