1
- # AnDatabase : _ The Anon Group Service _
1
+ # AnonGrp : _ The Mind In Your Hand _
2
2
3
3
# ` Just Focus On What To Do, Not In How To Do `
4
4
@@ -10,20 +10,13 @@ AnDatabase is a Database that provides a simple way to manage data in simple des
10
10
1 . No SQL Required, SQL Free Database
11
11
2 . Easy Implementation
12
12
3 . Fast, Flexible and Secure
13
- 4 . Table Exportation Support (To CSV for Excel & JSON File for Web Data Sharing)
13
+ 4 . Table Exportation Support (To CSV for Excel, JSON File for Web Data Sharing & in XML )
14
14
5 . Data Stored In Highly Secured Encryption Algorithms With Encryption Key That's Only Developer Knows.
15
15
6 . Easy Implementation Only Maximum 10 Lines Of Code Required For Implementing AnDatabase.
16
16
17
- ## _ > Release_ :
18
- ![ AnDatabase v2.4 JRE 9.jar (Latest Version) ] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20%20v2.4%20JRE%209%20.jar )
19
- ![ AnDatabase v2.4 JRE 8.jar (Latest Version) ] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.4%20JRE%208.jar )
20
- ![ AnDatabase v2.3 JRE 9.jar ] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.3%20JRE%209.jar )
21
- ![ AnDatabase v2.2 JRE 9.jar] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.2%20JRE%209%20.jar )
22
- ![ AnDatabase v2.2 JRE 8.jar] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.2%20JRE%208%20.jar )
23
- ![ AnDatabase v2.1jar] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.1.jar )
24
-
25
-
26
- ![ Take More ........] ( https://github.com/anongrp/AnDatabase/blob/master/Release.md )
17
+ ## ![ Release] ( https://github.com/anongrp/AnDatabase/releases )
18
+ ![ AnDatabase v2.5 JRE 9.jar (Latest Stable Version) ] ( https://github.com/anongrp/AnDatabase/raw/master/Release/AN%20Database%20v2.5%20JRE%209.jar )
19
+
27
20
28
21
### _ Looking For Python_ Visit ![ AnPyDatabase] ( https://github.com/Anikeshpatel/AnPyDatabase )
29
22
## _ > Projects Using AnDatabase_ :
@@ -50,20 +43,14 @@ AnDatabase is a Database that provides a simple way to manage data in simple des
50
43
```
51
44
3 . Creating Table Inside mainDatabase
52
45
``` java
53
- Table loginFormTable = new Table ();
54
- loginFormTable. createTable(" TableName" ,mainDatabase);
55
- ```
56
-
57
- 4 . Add Columns Inside Table
58
- ``` java
59
- String [] colName = new String []{" id" , " name" ," email" ," password" };
60
- loginFormTable. setColumns(colName);
46
+ String [] colName = new String []{" name" ," email" ," password" };
47
+ Table loginFormTable = new Table (" TableName" ,mainDatabase,colName);
61
48
```
62
49
63
- 5 . Ok That's It You Have Good To Go With AnDatabase And For Adding Data To Table Or Column Use
50
+ 4 . Ok That's It You Have Good To Go With AnDatabase And For Adding Data To Table Or Column Use
64
51
``` java
65
- String [] rowData
= new String []{
" 1 " , " UserName" ,
" [email protected] " };
66
- studentTB. addRow (rowData);
52
+ String [] rowData
= new String []{
" UserName" ,
" [email protected] " , " 12345 " };
53
+ studentTB. insertRow (rowData);
67
54
```
68
55
69
56
# >>> Security Example :
0 commit comments