Skip to content

Commit 688d777

Browse files
Update DataSourceSample.java (oracle-samples#155)
Fix the code comment that refers to Windows: use / instead of \\.
1 parent c6e444e commit 688d777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/jdbc/ConnectionSamples/DataSourceSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class DataSourceSample {
4141
// For ATP and ADW - use the TNS Alias name along with the TNS_ADMIN when using 18.3 JDBC driver
4242
// final static String DB_URL="jdbc:oracle:thin:@wallet_dbname?TNS_ADMIN=/Users/test/wallet_dbname";
4343
// 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";
44+
// final static String DB_URL="jdbc:oracle:thin:@wallet_dbname?TNS_ADMIN=C:/Users/test/wallet_dbname";
4545
final static String DB_USER = "hr";
4646
final static String DB_PASSWORD = "hr";
4747

0 commit comments

Comments
 (0)