Skip to content

Commit 6283ac1

Browse files
committed
Update README.md
1 parent 05bffc2 commit 6283ac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SODA 1.0.2
22
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. 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.
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. 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.
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)