Skip to content

Commit 92db2ae

Browse files
updated doc link
1 parent 252344a commit 92db2ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ See the Quickstart example below for code details for using a Resource Principal
122122
The on-premise configuration requires a running instance of Oracle NoSQL
123123
Database. In addition a running proxy service is required. See
124124
[Oracle NoSQL Database Downloads](https://www.oracle.com/database/technologies/nosql-database-server-downloads.html) for downloads, and see
125-
[Information about the proxy](https://docs.oracle.com/en/database/other-databases/nosql-database/20.3/admin/proxy-and-driver.html)
125+
[Information about the proxy](https://docs.oracle.com/en/database/other-databases/nosql-database/22.1/admin/proxy-and-driver.html)
126126
for proxy configuration information.
127127

128128
On-premise authorization requires use of [StoreAccessTokenProvider](https://oracle.github.io/nosql-java-sdk/oracle/nosql/driver/kv/StoreAccessTokenProvider.html)
@@ -441,14 +441,14 @@ public class Quickstart {
441441
* To ensure the query resources are closed properly, use
442442
* try-with-resources statement.
443443
*/
444-
try (QueryIterableResult results =
444+
try (QueryIterableResult results =
445445
handle.queryIterable(queryRequest)) {
446446
System.out.println("Query results:");
447447
for (MapValue res : results) {
448448
System.out.println("\t" + res);
449449
}
450450
}
451-
451+
452452
/*
453453
* Perform a query using partial results
454454
*/
@@ -488,7 +488,7 @@ public class Quickstart {
488488

489489
Several example programs are provided in the examples directory to
490490
illustrate the API. They can be found in the release download from GitHub or
491-
directly in [GitHub NoSQL Examples](https://github.com/oracle/nosql-java-sdk/tree/main/examples). These examples can be run
491+
directly in [GitHub NoSQL Examples](https://github.com/oracle/nosql-java-sdk/tree/main/examples). These examples can be run
492492
against the Oracle NoSQL
493493
Database, the NoSQL Database Cloud Service or an instance of the Oracle
494494
NoSQL Cloud Simulator. The code that differentiates among the configurations

0 commit comments

Comments
 (0)