Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found a lot of comparisions here, but not this one; So, what is best in each one?

share|improve this question
What are you willing to do? – Macarse Apr 27 '10 at 18:18
@Macarse a small standalone app in Java – Tom Brito Apr 27 '10 at 19:54

2 Answers

up vote 4 down vote accepted

There's a full comparison at SQLite's site.

SQLite is much more restricted, as it only supports a small subset of SQL92, whether Derby (now JavaDB) has full support of SQL92 and SQL99.

share|improve this answer
Nice! Of course I would like to know if the Derby team point of view about this comparison.. but thanks anyway :) – Tom Brito Apr 26 '10 at 14:51
3  
Here's a thread in the derby user mailing lists: old.nabble.com/Derby-v-SQLite-td13496423.html – mgv Apr 26 '10 at 14:54
still not what I expected, but thanks! – Tom Brito Apr 27 '10 at 19:56

One thing you should keep in mind about SQLite is that, besides supporting only a subset of SQL92, only the thread that created the SQLite database may access it. If you can live with that, then take it for its better performance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.