We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77df560 commit bab5f84Copy full SHA for bab5f84
java/jdbc/ConnectionSamples/DataSourceSample.java
@@ -40,6 +40,8 @@ public class DataSourceSample {
40
final static String DB_URL= "jdbc:oracle:thin:@myhost:1521/myorcldbservicename";
41
// For ATP and ADW - use the TNS Alias name along with the TNS_ADMIN when using 18.3 JDBC driver
42
// final static String DB_URL="jdbc:oracle:thin:@wallet_dbname?TNS_ADMIN=/Users/test/wallet_dbname";
43
+ // In case of windows, use the following URL
44
+ // final static String DB_URL="jdbc:oracle:thin:@wallet_dbname?TNS_ADMIN=C:\\Users\\test\\wallet_dbname";
45
final static String DB_USER = "hr";
46
final static String DB_PASSWORD = "hr";
47
0 commit comments