You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ See the Quickstart example below for code details for using a Resource Principal
122
122
The on-premise configuration requires a running instance of Oracle NoSQL
123
123
Database. In addition a running proxy service is required. See
124
124
[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)
126
126
for proxy configuration information.
127
127
128
128
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 {
441
441
* To ensure the query resources are closed properly, use
442
442
* try-with-resources statement.
443
443
*/
444
-
try (QueryIterableResult results =
444
+
try (QueryIterableResult results =
445
445
handle.queryIterable(queryRequest)) {
446
446
System.out.println("Query results:");
447
447
for (MapValue res : results) {
448
448
System.out.println("\t" + res);
449
449
}
450
450
}
451
-
451
+
452
452
/*
453
453
* Perform a query using partial results
454
454
*/
@@ -488,7 +488,7 @@ public class Quickstart {
488
488
489
489
Several example programs are provided in the examples directory to
490
490
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
492
492
against the Oracle NoSQL
493
493
Database, the NoSQL Database Cloud Service or an instance of the Oracle
494
494
NoSQL Cloud Simulator. The code that differentiates among the configurations
0 commit comments