Skip to content

Commit 57ecbb8

Browse files
committed
Update README.md
1 parent 65a38be commit 57ecbb8

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,7 +1,7 @@
11
# SODA 1.0.2
2-
Simple Oracle Document Access (SODA) is a family of APIs from Oracle for working with JSON in the Oracle Database, in a way typically associated with NoSQL databases. Although SODA is particularly powerful when it comes to JSON data, data of any other type is supported as well.
2+
Simple Oracle Document Access (SODA) is an API from Oracle for working with JSON in the Oracle Database. Although SODA is particularly powerful when it comes to JSON data, data of any other type is supported as well.
33

4-
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. SODA is implemented as a layer which sits on top of your Oracle Database, and provides the abstraction of document collections. Under the covers, a collection is stored in 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.
4+
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. SODA is implemented as a layer which sits on top of your Oracle Database, and provides the abstraction of document collections. Essentially SODA provides a virtual NoSQL document store on top of your Oracle Database. Under the covers, a collection is stored in 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. Essentially SODA provides a virtual NoSQL document store on top of your Oracle Database.
55

66
SODA for Java, hosted in this repository, is a library which implements SODA for use with Java.
77
SODA for REST, which can be used from any programming language capable of making http requests,

0 commit comments

Comments
 (0)