Skip to content

Commit

Permalink
Merge pull request #15 from Vandana-Rajamani/main
Browse files Browse the repository at this point in the history
update links
  • Loading branch information
mikebrey committed Feb 14, 2023
2 parents 9ce6370 + fe84e32 commit db835ba
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 24 deletions.
5 changes: 2 additions & 3 deletions README-DEV.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ Running Tests and Examples
During development the unit tests and examples run against either a local Cloud
Simulator server, which can run on the local machine or an instance of the
on-premise Proxy that allows access to a local instance of the Oracle NoSQL
Database. See `Download the Oracle NoSQL Cloud Simulator <https://docs.oracle.
com/pls/topic/lookup?ctx=en/cloud/paas/nosql-cloud&id=CSNSD-GUID-3E11C056-B144-
4EEA-8224-37F4C3CB83F6>`_ to download and start the Cloud Simulator. See `Oracle
Database. See `Download the Oracle NoSQL Cloud Simulator <
https://www.oracle.com/downloads/cloud/nosql-cloud-sdk-downloads.html>`to download and start the Cloud Simulator. See `Oracle
NoSQL Downloads <https://www.oracle.com/database/technologies/nosql-database-
server-downloads.html>`_ to download the on-premise product and proxy server.

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ database. In addition a running proxy service is required. See `Oracle NoSQL
Database Downloads <https://www.oracle.com/database/technologies/nosql-database-
server-downloads.html>`_ for downloads, and see `Information about the proxy
<https://docs.oracle.com/pls/topic/lookup?ctx=en/database/other-databases/nosql-
database/21.2/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_ for
database/22.3/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_ for
proxy configuration information.

This project is open source and maintained by Oracle Corp. The home page for the
Expand Down
10 changes: 4 additions & 6 deletions docs/datatypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ the Python equivalents are *Python types*.
Oracle NoSQL Database Types
===========================

See `Supported Data Types <https://docs.oracle.com/pls/topic/lookup?ctx=en/cloud
/paas/nosql-cloud&id=CSNSD-GUID-833B2B2A-1A32-48AB-A19E-413EAFB964B8>`_ for a
description of the data types supported by the service. An application uses
these types to create tables and indexes. For example, a table may be created
using this Data Definition Language (DDL) statement, which defines types in
terms of the database types::
See
[Supported Data Types](https://docs.oracle.com/en/cloud/paas/nosql-cloud/rnpxl/index.html#RNPXL-GUID-833B2B2A-1A32-48AB-A19E-413EAFB964B8). _ for a
description of the data types supported by the service. An application uses these types to create tables and indexes. For example, a table may be created
using this Data Definition Language (DDL) statement, which defines types in terms of the database types::

create table mytable(id integer, name string, created timestamp,
address record(street string, city string, zip integer), primary key(id))
Expand Down
12 changes: 4 additions & 8 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ The Python SDK requires:

* For the Oracle NoSQL Database Cloud Simulator:

* See `Download the Oracle NoSQL Cloud Simulator <https://docs.oracle.com/pls/
topic/lookup?ctx=en/cloud/paas/nosql-cloud&id=CSNSD-GUID-3E11C056-B144-4EEA-
8224-37F4C3CB83F6>`_ to download and start the Cloud Simulator.
* See `Download the Oracle NoSQL Cloud Simulator <https://www.oracle.com/downloads/cloud/nosql-cloud-sdk-downloads.html>`_ to download and start the Cloud Simulator.

* For the on-premise Oracle NoSQL Database:

Expand All @@ -37,7 +35,7 @@ The Python SDK requires:
)
* A running proxy server, see `Information about the proxy <https://docs.
oracle.com/pls/topic/lookup?ctx=en/database/other-databases/nosql-database/
19.3/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_
22.3/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_

------------------------------------
Downloading and Installing the SDK
Expand Down Expand Up @@ -265,9 +263,7 @@ The Oracle NoSQL Cloud Simulator is a useful way to use this SDK to connect to a
local server that supports the same protocol. The Cloud Simulator requires Java
8 or higher.

See `Download the Oracle NoSQL Cloud Simulator <https://docs.oracle.com/pls/
topic/lookup?ctx=en/cloud/paas/nosql-cloud&id=CSNSD-GUID-3E11C056-B144-4EEA-8224
-37F4C3CB83F6>`_ to download and start the Cloud Simulator.
See `Download the Oracle NoSQL Cloud Simulator <https://www.oracle.com/downloads/cloud/nosql-cloud-sdk-downloads.html>`_ to download and start the Cloud Simulator.

1. Download and start the Cloud Simulator
2. Follow instructions in the examples/config.py file for connecting examples
Expand All @@ -290,7 +286,7 @@ database. In addition a running proxy service is required. See `Oracle NoSQL
Database Downloads <https://www.oracle.com/database/technologies/nosql-database-
server-downloads.html>`_ for downloads, and see `Information about the proxy
<https://docs.oracle.com/pls/topic/lookup?ctx=en/database/other-databases/nosql-
database/19.3/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_ for
database/22.3/admin&id=NSADM-GUID-C110AF57-8B35-4C48-A82E-2621C6A5ED72>`_ for
proxy configuration information.

If running a secure store, a certificate path should be specified through the
Expand Down
11 changes: 5 additions & 6 deletions docs/tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,13 @@ ignored on-premise, if provided.

Before creating a table, learn about:

The supported data types for Oracle NoSQL Database. See `Supported Data Types
<https://docs.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/nosql-cloud&id=CSNSD
-GUID-833B2B2A-1A32-48AB-A19E-413EAFB964B8>`_. Also see :ref:`datatypes` for a
description of how database types map to Python.
The supported data types for Oracle NoSQL Database. See
[Supported Data Types]
(https://docs.oracle.com/en/cloud/paas/nosql-cloud/rnpxl/index.html#RNPXL-GUID-833B2B2A-1A32-48AB-A19E-413EAFB964B8).
_. Also see :ref:`datatypes` for a description of how database types map to Python.

For the Oracle NoSQL Database Cloud Service limits. See `Oracle NoSQL Database
Cloud Limits <https://docs.oracle.com/pls/topic/lookup?ctx=en/cloud/paas/nosql-
cloud&id=CSNSD-GUID-30129AB3-906B-4E71-8EFB-8E0BBCD67144>`_. These limits are
Cloud Limits <https://docs.oracle.com/en/cloud/paas/nosql-cloud/fkdyw/index.html#FKDYW-GUID-30129AB3-906B-4E71-8EFB-8E0BBCD67144>`_. These limits are
not relevant on-premise.

Examples of DDL statements are::
Expand Down

0 comments on commit db835ba

Please sign in to comment.