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.
- 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.
submit your project info to following email anongrpindia@gmail.com
Classes | Summary |
---|---|
Database | Handle Database |
Table | Handle Tables |
Security | Provide Encryption |
-
For Connecting To The AnDatabase
Connection.connect("NameOfYourProject");
It Simply Returns Boolean Value True If Database is Connected Otherwise False. -
Creating Database
Database mainDatabase = new Database("NameOfDatabase");
- Creating Table Inside mainDatabase
String[] colName = new String[]{"name","email","password"};
Table loginFormTable = new Table("TableName",mainDatabase,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[]{"UserName","UserEmail@Example.com","12345"};
studentTB.insertRow(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