Skip to content

Commit 65a38be

Browse files
committed
Update README.md
1 parent 0d39235 commit 65a38be

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 that let you easily work with JSON (and other types of data) in the Oracle Database, in a way typically associated with NoSQL document stores. SODA is particularly powerful when it comes to working with JSON data, but data of any type is supported.
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.
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. 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. 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.
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)