From e74ec34c0569f34b38f23fcd5f531e6a3a85846c Mon Sep 17 00:00:00 2001 From: Maxim Orgiyan Date: Mon, 4 Nov 2024 20:09:13 -0800 Subject: [PATCH] Update README.md Update version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 217fb58..b551d36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# SODA 1.1.7 +# SODA 1.1.29 Simple Oracle Document Access (SODA) is an API which allows you to use the Oracle Database as a NoSQL JSON document store. Although SODA is particularly powerful when it comes to JSON data, data of any other type is supported as well. With the SODA architecture, your data is stored as documents, and documents are organized into collections. Each document contains the actual data, as well as additional information automatically maintained by SODA, such as unique key, last-modified timestamp, version, type, etc. SODA lets you create and store such collections of documents in the Oracle Database, and perform create, retrive, update, and delete (CRUD) operations on these documents, without needing to know Structured Query Language (SQL), or JDBC, or how the data is stored in the database. Essentially SODA provides a virtual NoSQL document store on top of your Oracle Database. Under the covers, a collection is stored as a regular Oracle Database table, and each document is stored as a row in the table. SQL access to the table using standard tools is still allowed.