File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Revision history for Perl extension URI::db.
330.18
44 - Added URI::redshift to support db:redshift: URIs, thanks to a pull
55 request from Steve Caldwell (PR #12).
6+ - Added URI::exasol, thanks to Johan Wärlander.
67
780.17 2016-02-03T18:35:33Z
89 - Added URI::_ado, which subclasses URI::_odbc to provide a `dbi_dsn()`
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ sub _dbi_param_map {
1212 # Just return the DSN if no host or port.
1313 return [ DSN => scalar $self -> dbname ] unless $host || $port ;
1414
15- # Fetch the driver from the query params.
16- require URI::QueryParam;
1715 return (
1816 [ Server => $host ],
1917 [ Port => $port || $self -> default_port ],
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ sub _dbi_param_map {
1212 # Just return the DSN if no host or port.
1313 return [ DSN => scalar $self -> dbname ] unless $host || $port ;
1414
15- # Fetch the driver from the query params.
16- require URI::QueryParam;
1715 return (
1816 [ EXAHOST => $host ],
1917 [ EXAPORT => $port || $self -> default_port ],
You can’t perform that action at this time.
0 commit comments