Skip to content

The AnDatabase is a collection of information that is organized so that it can be easily accessed, managed and updated by an Local Desktop Softwares.

License

Notifications You must be signed in to change notification settings

Anikeshpatel/AnDatabase

 
 

Repository files navigation

AnDatabase : The Anon Group Service

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

AnDatabase is a Database that provides a simple way to manage data in simple desktop application Like Music Player, Video Player, and Text Editor. 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.

> Features :

  1. No SQL Required, SQL Free Database
  2. Easy Implementation
  3. Fast and Highly Secure
  4. Table Exportation Support (To CSV File)
  5. Data Stored In Highly Secured Encryption Algorithms With Encryption Key That's Only Developer Knows.
  6. Easy Implementation Only Maximum 10 Lines Of Code Required For Implementing AnDatabase.

> Download :

AnDatabase v2.2 JRE 9 .jar
AnDatabase v2.2 JRE 8 .jar
AnDatabase v2.1jar
AnDatabase v2.0.jar

Looking For Python Visit AnPyDatabase

> 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(); 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
Table loginFormTable = new Table();  
loginFormTable.createTable("TableName",mainDatabase);
  1. Add Columns Inside Table
String[] colName = new String[]{"id", "name","email","password"};  
loginFormTable.setColumns(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[]{"1","UserName","UserEmail@Example.com"};
studentTB.addRow(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

About

The AnDatabase is a collection of information that is organized so that it can be easily accessed, managed and updated by an Local Desktop Softwares.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 85.5%
  • HTML 14.5%