Skip to content
Snippets Groups Projects
Commit 327a9090 authored by Leo Gordon's avatar Leo Gordon
Browse files

Hive::DBSQL::DBConnection now supports new(-url => $url);

parent 08c0c4d3
No related branches found
No related tags found
No related merge requests found
......@@ -37,9 +37,39 @@ package Bio::EnsEMBL::Hive::DBSQL::DBConnection;
use strict;
use warnings;
use Bio::EnsEMBL::Utils::Argument ('rearrange');
use Bio::EnsEMBL::Hive::Utils::URL;
use base ('Bio::EnsEMBL::DBSQL::DBConnection');
sub new {
my $class = shift;
my ($url) = rearrange( ['URL'], @_ );
if($url) {
if(my $parsed_url = Bio::EnsEMBL::Hive::Utils::URL::parse( $url )) {
return $class->SUPER::new(
-driver => $parsed_url->{'driver'},
-host => $parsed_url->{'host'},
-port => $parsed_url->{'port'},
-user => $parsed_url->{'user'},
-pass => $parsed_url->{'pass'},
-dbname => $parsed_url->{'dbname'},
-disconnect_when_inactive => $parsed_url->{'conn_params'}->{'discon'},
-reconnect_when_connection_lost => $parsed_url->{'conn_params'}->{'recon'},
);
} else {
die "Could not create DBC because could not parse the URL '$url'";
}
} else {
return $class->SUPER::new( @_ );
}
}
=head2 url
Arg [1] : String $environment_variable_name_to_store_password_in (optional)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment