Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Estimated Time: 15 minutes
1. Execute the following in your Shell.
```
<copy>
KV_VERSION=21.2.46
KV_VERSION=23.3.32
KVHOME=$HOME/kv-$KV_VERSION
</copy>
```
Expand Down Expand Up @@ -170,8 +170,8 @@ The java driver can be downloaded from [here](https://github.com/oracle/nosql-ja
```
<copy>
cd ~/oracle-nosql-arrays
curl -OL https://github.com/oracle/nosql-java-sdk/files/8482385/oracle-nosql-java-sdk-5.3.2.zip
unzip oracle-nosql-java-sdk-5.3.2.zip
curl -OL https://github.com/oracle/nosql-java-sdk/releases/download/v5.4.15/oracle-nosql-java-sdk-5.4.15.zip
unzip oracle-nosql-java-sdk-5.4.15.zip
</copy>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Execute the following in your Shell. You are invoking the sql command line to ex

```
<copy>
KV_VERSION=21.2.46
KV_VERSION=23.3.32
KVHOME=$HOME/kv-$KV_VERSION

cd ~/oracle-nosql-arrays
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ In this lab you will be using the 20.3.19 version of the Community Edition of Or
NoSQL Database. You download the file and unzip and extract the contents.
````
<copy>
KV_VERSION=21.2.46
KV_VERSION=23.3.32
rm -rf kv-$KV_VERSION
DOWNLOAD_ROOT=http://download.oracle.com/otn-pub/otn_software/nosql-database
DOWNLOAD_FILE="kv-ce-${KV_VERSION}.zip"
DOWNLOAD_FILE="community-edition-${KV_VERSION}.zip"
DOWNLOAD_LINK="${DOWNLOAD_ROOT}/${DOWNLOAD_FILE}"
curl -OL $DOWNLOAD_LINK
unzip $DOWNLOAD_FILE
rm $DOWNLOAD_FILE
KVHOME=$PWD/kv-$KV_VERSION
</copy>
````
Expand Down
8 changes: 4 additions & 4 deletions examples-nosql-cluster-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ are available which you can use, however, we are providing Java examples.

````bash
cd $HOME
rm -rf oracle-nosql-java-sdk-5.4.14.zip oracle-nosql-java-sdk
curl -L https://github.com/oracle/nosql-java-sdk/releases/download/v5.4.14/oracle-nosql-java-sdk-5.4.14.zip \
-o oracle-nosql-java-sdk-5.4.14.zip
unzip oracle-nosql-java-sdk-5.4.14.zip
rm -rf oracle-nosql-java-sdk-5.4.15.zip oracle-nosql-java-sdk
curl -L https://github.com/oracle/nosql-java-sdk/releases/download/v5.4.15/oracle-nosql-java-sdk-5.4.15.zip \
-o oracle-nosql-java-sdk-5.4.15.zip
unzip oracle-nosql-java-sdk-5.4.15.zip
cd oracle-nosql-java-sdk/examples/
javac -cp ../lib/nosqldriver.jar *.java
cd $HOME
Expand Down