Remove redundant jdbc: string in Oracle connection string. (#17)

Remove redundant jdbc: string in Oracle connection string.
This commit is contained in:
Maarika Markus
2021-09-04 01:09:29 +03:00
committed by GitHub
parent f1d3f012fa
commit 622c508764

View File

@@ -61,7 +61,7 @@ implementation "com.zaxxer:HikariCP:3.4.2"
```
* Oracle
```kotlin
Database.connect("jdbc:jdbc:oracle:thin:@//localhost:1521/test", driver = "oracle.jdbc.OracleDriver",
Database.connect("jdbc:oracle:thin:@//localhost:1521/test", driver = "oracle.jdbc.OracleDriver",
user = "root", password = "your_pwd")
//Gradle
// Oracle jdbc-driver should be obtained from Oracle maven repo: https://blogs.oracle.com/dev2dev/get-oracle-jdbc-drivers-and-ucp-from-oracle-maven-repository-without-ides