-1

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

user2688104
  • 117
  • 1
  • 6
  • 1
    sqlplus / 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
  • 1
    You 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 Answers1

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