+ 2
Which database server best for java
I want to create inventory management which database I use
4 ответов
+ 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.
+ 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
+ 1
use MySQL database..it is efficient and good