Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQLite vs HSQLDB

Tags:

sqlite

hsqldb

What are the main differences between SQLite and HSQLDB? There are lots of applications using both of them, but I don't really see any major difference.

like image 602
Jakub Arnold Avatar asked Apr 15 '09 20:04

Jakub Arnold


1 Answers

SQLite is implemented in C, HSQL is implemented in Java.

It should be more seamless and easy to integrate SQLite with an application project written in C or C++, whereas I would expect the HSQL technology is easier to integrate with a project written in Java.

No doubt there are numerous other more subtle differences between these two embedded databases, but the above is the most prominent difference.

like image 66
Bill Karwin Avatar answered Oct 05 '22 21:10

Bill Karwin