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.
- No SQL Required, SQL Free Database
- Easy Implementation
- Fast and Highly Secure
- Table Exportation Support (To CSV File)
- Data Stored In Highly Secured Encryption Algorithms With Encryption Key That's Only Developer Knows.
- Easy Implementation Only Maximum 10 Lines Of Code Required For Implementing AnDatabase.
Classes | Summary |
---|---|
Database | Handle Database |
Table | Handle Tables |
Security | Provide Encryption |
-
For Connecting To The AnDatabase
Connection.connect();
It Simply Returns Boolean Value True If Database is Connected Otherwise False. -
Creating Database
Database mainDatabase = new Database("NameOfDatabase");
- Creating Table Inside mainDatabase
Table loginFormTable = new Table();
loginFormTable.createTable("TableName",mainDatabase);
- Add Columns Inside Table
String[] colName = new String[]{"id", "name","email","password"};
loginFormTable.setColumns(colName);
- 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);
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 :
Output :
ɢʏɥʂʕʂʃʂʔʆ
Basic Decryption Example :
Output :
AnDatabase