File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/org/utplsql/cli/datasource Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5656 <version >4.6.3</version >
5757 </dependency >
5858 <dependency >
59- <groupId >com.oracle.ojdbc </groupId >
59+ <groupId >com.oracle.database.jdbc </groupId >
6060 <artifactId >ojdbc8</artifactId >
6161 <version >${oracle.jdbc.version} </version >
6262 <scope >compile</scope >
6363 <exclusions >
6464 <exclusion >
65- <groupId >com.oracle.ojdbc </groupId >
65+ <groupId >com.oracle.database.jdbc </groupId >
6666 <artifactId >ucp</artifactId >
6767 </exclusion >
6868 </exclusions >
6969 </dependency >
7070 <dependency >
71- <groupId >com.oracle.ojdbc </groupId >
71+ <groupId >com.oracle.database.nls </groupId >
7272 <artifactId >orai18n</artifactId >
7373 <version >${oracle.jdbc.version} </version >
7474 <scope >compile</scope >
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ private void setThickOrThinJdbcUrl(OracleDataSource ds) throws SQLException {
5454 ds .setPassword (config .getPassword ());
5555
5656 for (ConnectStringPossibility possibility : possibilities ) {
57+ logger .debug ("Try connecting {}" , possibility .getMaskedConnectString (config ));
5758 ds .setURL (possibility .getConnectString (config ));
5859 try (Connection ignored = ds .getConnection ()) {
5960 logger .info ("Use connection string {}" , possibility .getMaskedConnectString (config ));
You can’t perform that action at this time.
0 commit comments