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.
3
3
0.18
4
4
- Added URI::redshift to support db:redshift: URIs, thanks to a pull
5
5
request from Steve Caldwell (PR #12).
6
+ - Added URI::exasol, thanks to Johan Wärlander.
6
7
7
8
0.17 2016-02-03T18:35:33Z
8
9
- 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 {
12
12
# Just return the DSN if no host or port.
13
13
return [ DSN => scalar $self -> dbname ] unless $host || $port ;
14
14
15
- # Fetch the driver from the query params.
16
- require URI::QueryParam;
17
15
return (
18
16
[ Server => $host ],
19
17
[ Port => $port || $self -> default_port ],
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ sub _dbi_param_map {
12
12
# Just return the DSN if no host or port.
13
13
return [ DSN => scalar $self -> dbname ] unless $host || $port ;
14
14
15
- # Fetch the driver from the query params.
16
- require URI::QueryParam;
17
15
return (
18
16
[ EXAHOST => $host ],
19
17
[ EXAPORT => $port || $self -> default_port ],
You can’t perform that action at this time.
0 commit comments