I have developed a Java project using MS-Access as database . This project reads log files , and generate reports. I have to migrate this project to a UNIX server .Can somebody please suggest me another suite of database for my project. or If I should continue using MS-access
Asked
Active
Viewed 72 times
-1
-
1sqlplus / mysql are good databases that you could user for similar project. I have used them for something similar in past. – Maddy Dec 16 '14 at 02:23
-
1You could use a pure Java database like Derby or H2; then it would work on multiple platforms. – Elliott Frisch Dec 16 '14 at 02:25
1 Answers
1
Depending on your needs, you may consider SQLITE (for a small project) or MySQL (for a medium one) - both are straightforward to install and use. For SQLite: Java and SQLite and for MySQL there is a nice tutorial: http://www.vogella.com/tutorials/MySQLJava/article.html Good luck!

Community
- 1
- 1

user2276239
- 36
- 3