A baseless database application.
This is actually a try from my side to create a Object Oriented NO-SQL Database, which stores data of a object in JSON format.
Answer > I had 4 question:
- What to do in cases there is no database installed in client location.
- I do not want to install a full-fledged database application which takes a lot of space, ram, etc. (i.e. Resources) to run.
- Store data where ever I want to in a human readable way. So that I can pack the data along with the application.
- Let other application to use the datastored by the application.
Answer > This database has mainly 4 Operation it should perform. CRUD
, that is Create, Read, Update, Delete.
- Save (Done)
- Read
- Update
- Delete
Answer > Save Function :
- This base is only cabaple of
save
operation. For this, you need to specify the location in which you want to make theVAULT
. - Then only at first mention the classes you want to store the data of, let's call them
ENTITIES
following JPA Standards. It will then create a folder for eachENTITIES
mentioned. If already present, it will not create a folder. - Then you just pass the object you want to save to the
save(Object)
function. Example: Like, say you want to save auser
object. Then pass it like save(user). - Then it store the object as a JSON File in the folder with the class of the Object saved.
Comming Up: update, delete, read
funtionality.
Any queries: Please till in the discussions tab
.
I will describe the workings of the database in a youtube vedio: [<URL HERE>]
Most Updated Code in: develop branch