DEV Community

Pacharapol Withayasakpunt
Pacharapol Withayasakpunt

Posted on

What's your embedded database of choice?

For stability (i.e. ACID), it used to be SQLite. But SQLite has an issue that is bugging me -- case-insensitive LIKE (or case-sensitive only for ASCII).

Later on, I have found that h2 database which indeed (supposed to) can only normally run through JVM's JDBC, can also run in server mode, as well as there are bindings in Python and Node.js.

But I chose to code in JVM (using Kotlin)...

I also know that there is embedded Neo4j, only in JVM.

Latest comments (0)