SQLite vs HSQLDB

后端 未结 3 1216
轻奢々
轻奢々 2020-12-24 11:41

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 maj

相关标签:
3条回答
  • 2020-12-24 12:14

    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.

    0 讨论(0)
  • 2020-12-24 12:24

    IMHO THE biggest difference is, that SQLite has no user management at all in contrast to HSQLDB.

    (This does not want to say anything bad about SQLite. SQlite defenitely has its usecases it is also very widely used.)

    0 讨论(0)
  • 2020-12-24 12:33

    The good comparison of HSQLDB & SQLite can be found at http://3rdstage.blogspot.com/2009/03/comparion-of-hsqldb-h2-sqlite.html

    0 讨论(0)
提交回复
热议问题