What external database can I use to work with my java application except Microsoft Access? I need a tree like structure or a hashmap and not relational tables.
Asked
Active
Viewed 131 times
-1
-
What is your findings ?? – Kick Mar 15 '14 at 18:52
-
XML is generally well-suited to tree-like structures – wakjah Mar 15 '14 at 18:53
-
@wakjah OP asking about data bases – Kick Mar 15 '14 at 18:54
2 Answers
1
Well, relational tables can be used to do what a tree or a hashmap does, very easily. So something like MySQL or PostgreSQL could easily meet your needs.
If you really want a treelike/hashmap-like database, look at MapDB. It's very fast, and provides both trees and hashmaps.

larsga
- 654
- 6
- 10
0
For HashMap like i.e. Key,Value pair -> MongoDB
would be a good choice since you store documents in it in BSON (Binary JSON) structure.
For Tree/Graph like structures -> Neo4j
would be a good choice I guess.

Ajay George
- 11,759
- 1
- 40
- 48