DOC

com.oracle.database.soda : orajsoda

Maven & Gradle

Aug 06, 2023
65 stars

SODA (Simple Oracle Document Access) for Java · SODA for Java is a library for writing Java apps that work with JSON (and not only JSON!) in the Oracle Database. SODA allows your Java app to use the Oracle Database as a NoSQL document store. You can use SODA to perform create, read, update, and delete (CRUD) operations on JSON documents, as well as arbitrary binary documents (images, PDFs, mp3s, etc). For all types of documents, CRUD operations are driven by keys (each document in SODA has a unique key). For JSON documents, in addition to keys, operations can be driven by easy to use pattern-like queries knowns as QBEs (queries-by-example).

Table Of Contents

Latest Version

Download com.oracle.database.soda : orajsoda Javadoc & API Documentation - Latest Versions:

All Versions

Download com.oracle.database.soda : orajsoda Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.1.x

How to open Javadoc JAR file in web browser

  1. Rename the file orajsoda-1.1.7.2-javadoc.jar to orajsoda-1.1.7.2-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder orajsoda-1.1.7.2-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "orajsoda-1.1.7.2-sources.jar" -d "orajsoda-1.1.7.2-javadoc" -subpackages 

Advertisement