summaryrefslogtreecommitdiffstats
path: root/videodb-check.pl
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@ens-lyon.org>2012-02-17 21:11:35 +0100
committerGuilhem Moulin <guilhem.moulin@ens-lyon.org>2012-02-17 21:13:11 +0100
commit2764618fb5825840466e6f003ec6df5e8ccdfe5e (patch)
treef39085d00deafbbea192aeb37801e8fe4f3bbaf5 /videodb-check.pl
parent653e1ff8bbd9307920cb933d4cb766179d3c3812 (diff)
support of extra connections options (eg, ssl)
Diffstat (limited to 'videodb-check.pl')
-rwxr-xr-xvideodb-check.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/videodb-check.pl b/videodb-check.pl
index 8acff46..11c5de2 100755
--- a/videodb-check.pl
+++ b/videodb-check.pl
@@ -134,6 +134,11 @@ if (@ARGV) {
# Connect to database
my $dsn = "DBI:$config{driver}:database=$config{database};host=$config{hostname};port=$config{port}";
+if (exists $config{dbi_misc}) {
+ while (my ($k,$v) = each $config{dbi_misc}) {
+ $dsn .= ";$k=$v";
+ }
+}
my $dbh = DBI->connect($dsn, $config{user}, $config{password})
or die "Can't connect do database\n";
$dbh->do( "set names utf8" ) or die;