From 20c930e2e09773378541c8a3f57bec9d4499fe4e Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Fri, 14 Sep 2018 11:07:22 -0600 Subject: [PATCH] Be more clear about the requirements for use of SODA. --- doc/src/soda.rst | 7 +++++++ samples/SodaBasic.py | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/src/soda.rst b/doc/src/soda.rst index c08d6ce..0c006a7 100644 --- a/doc/src/soda.rst +++ b/doc/src/soda.rst @@ -4,6 +4,13 @@ SODA **** +An overview of Simple Oracle Document Access (SODA) can be found +`here +`__. + +SODA requires Oracle Client 18.3 or higher and Oracle Database 18.1 and higher. +The role SODA_APP must be granted to the user. + SODA support in cx_Oracle is in Preview status and should not be used in production. It will be supported with a future version of Oracle Client libraries. diff --git a/samples/SodaBasic.py b/samples/SodaBasic.py index c7a9aa2..434829c 100644 --- a/samples/SodaBasic.py +++ b/samples/SodaBasic.py @@ -7,7 +7,9 @@ # A basic Simple Oracle Document Access (SODA) example. # # This script requires cx_Oracle 7.0 and higher. -# The user must have been granted the SODA_APP privilege +# Oracle Client must be at 18.3 or higher. +# Oracle Database must be at 18.1 or higher. +# The user must have been granted the SODA_APP privilege. #------------------------------------------------------------------------------ from __future__ import print_function