-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.
0 commit comments