Skip to content

Commit 41d14fe

Browse files
authored
Update README.md
1 parent 56ed21a commit 41d14fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SODA 1.1.4
1+
# SODA 1.1.7
22
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.
33

44
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.
@@ -8,7 +8,7 @@ SODA for Java supports:
88
* CRUD operations on documents containing data of any type using unique document keys
99
* CRUD operations on documents containing JSON data using QBEs (simple pattern-like queries-by-example expressed in JSON), or unique document keys
1010
* Bulk read/write operations
11-
* Optimistic locking
11+
* Optimistic and pessimistic locking
1212
* Transactions
1313
* Document collections backed by Oracle Database tables or views
1414
* Mapping of existing Oracle Database tables or views as document collections

0 commit comments

Comments
 (0)