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")