Skip to content

Simple lightweight data storing library for Java like database for javafx or other java desktop application frameworks

License

Notifications You must be signed in to change notification settings

anongrp/AnDatabase-Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnonGrp : The Mind In Your Hand

Just Focus On What To Do, Not In How To Do

AnDatabase is a Database that provides a simple way to store and manage data in java desktop application. In AnDatabase data is organized into rows, columns, and tables, and it is indexed to make it easier to find relevant information. Data gets updated, expanded and deleted as new information is added.

You can use it for storing your application setting data and other complex data.

Reason for using it

  • Lightweight
  • Easy implementation
  • Less Code for implement AnDatabase
  • Bahave like database
  • Simple SQL require for complex data updating & fetching
  • Fast and Secure
  • Table Exportation Support (To CSV for Excel, JSON File for Web Data Sharing & in XML)
  • Data Stored In Highly Secured Encryption Algorithms With Encryption Key That's Only Developer Knows.

Looking For Python Visit AnPyDatabase

Using it already

submit your project info to following email anongrpindia@gmail.com

Projects Using AnDatabase :  

Basic Implementation :

List Of Classes :

Classes Summary
Database Handle Database
Table Handle Tables
Security     Provide Encryption
  1. For Connecting To The AnDatabase Connection.connect("NameOfYourProject"); It Simply Returns Boolean Value True If Database is Connected Otherwise False.

  2. Creating Database

Database mainDatabase = new Database("NameOfDatabase");
  1. Creating Table Inside mainDatabase
String[] colName = new String[]{"name","email","password"};
Table loginFormTable = new Table("TableName",mainDatabase,colName);  
  1. Ok That's It You Have Good To Go With AnDatabase And For Adding Data To Table Or Column Use
String[] rowData = new String[]{"UserName","UserEmail@Example.com","12345"};
studentTB.insertRow(rowData);

>>> Security Example :

For Password Security AnDatabase Provide A Security Class That Encrypt Your Password With A Special Key Inside Program Then Add Into Column.
Eg.

Security.encrypt(Data,Key);
Security.decrypt(EncryptedData,key);

Basic Encryption Example :

Encryption

Output :
ɢʏɥʂʕʂʃʂʔʆ

Basic Decryption Example :

Decryption

Output :
AnDatabase

>>> Standard Way To Implement AnDatabase

Standard Way

Anon Database