Which database server best for java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Which database server best for java

I want to create inventory management which database I use

31st May 2017, 2:55 AM
MD. ARIFUL ISLAM
MD. ARIFUL ISLAM - avatar
4 Answers
+ 1
I am not sure if you are familiar with ORM(object-relational Mapping). ORM maps your database to the object that can be accessed inside your JAVA code. All the tables of the database are available to you as a class, which makes developer's life easy to manipulate the database using objects. Hibernate is one of the good ORMs popular for JAVA.. One advantage of using ORM like hibernate is you don't need to worry about what database are you using it will be taken care by ORM itself, you are not required to write any database specific query which helps you in case you want to migrate your database to any other. Hope that helps, Thanks.
31st May 2017, 3:40 AM
Patel
+ 14
If you can afford then Oracle database is the best otherwise you can go for MySQL as well. PostgreSQl , MongoDB, Hadoop mainly focus on No Schema implementation using NoSQL and most of them does not handle relational data quite well .  Hence, Oracle database 11g or 10g OR MySQl would be my choice. :D
31st May 2017, 3:31 AM
Dev
Dev - avatar
31st May 2017, 4:29 AM
Nomeh Uchenna Gabriel
Nomeh Uchenna Gabriel - avatar
+ 1
use MySQL database..it is efficient and good
31st May 2017, 3:00 AM
Vijaysai Suri
Vijaysai Suri - avatar