You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it is a bit hard to default to a socket connection (e.g. if he DB is local and not TCP reachable).
Below change to line 776 makes this easier.
Ta!
my $dsn = "DBI:$dbtype:database=$dbname";
$dsn .= ";host=$dbhost" if length($dbhost);
$dsn .= ";port=$dbport" if length($dbport);
my $dbh = DBI->connect($dsn,$dbuser, $dbpass)
or die "$scriptname: Cannot connect to database\n";
The text was updated successfully, but these errors were encountered:
Currently it is a bit hard to default to a socket connection (e.g. if he DB is local and not TCP reachable).
Below change to line 776 makes this easier.
Ta!
The text was updated successfully, but these errors were encountered: