Ashish
Ashish

Reputation: 432

Suitable database for application

I need to find a suitable database for my application, that satisfy following criteria,

  1. Zero intallation
  2. Zero configuration
  3. Portable (client wants database file to be able to shift from one machine to another manually.)

Please suggest me a suitable database for the above criteria.

Upvotes: 2

Views: 291

Answers (5)

mokrzu
mokrzu

Reputation: 203

for me mongodb also meets these criteria (unless you really need sql database)

Upvotes: 0

Maurice Perry
Maurice Perry

Reputation: 32831

I would recommand h2

Upvotes: 1

Jonas
Jonas

Reputation: 129075

I recommend JavaDB, you can use it as an in process database and it has good performance. I have used it in several projects, mainly in Java Swing desktop applications.

Upvotes: 1

Michał Šrajer
Michał Šrajer

Reputation: 31192

For java I will go with Apache Derby (aka Java DB).

Upvotes: 1

Jacob
Jacob

Reputation: 43309

Sounds like you should use SQLite for that.

Have a look at Java and SQLite for how to interact with the SQLite databae from Java.

Upvotes: 0

Related Questions