Skip to content

Commit

Permalink
Changed Oracle thin URL for support Oracle 11 and 12 XE (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrogiacom authored and rnorth committed Jul 10, 2018
1 parent fb69755 commit 2ffb8a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public String getDriverClassName() {

@Override
public String getJdbcUrl() {
return "jdbc:oracle:thin:" + getUsername() + "/" + getPassword() + "@//" + getContainerIpAddress() + ":" + getOraclePort() + "/" + getSid();
return "jdbc:oracle:thin:" + getUsername() + "/" + getPassword() + "@" + getContainerIpAddress() + ":" + getOraclePort() + ":" + getSid();
}

@Override
Expand Down

0 comments on commit 2ffb8a3

Please sign in to comment.