It is possible to create an SQlite database in memory:
rc = sqlite3_open(":memory:", &db);
but if I understood the documentation correctly, this database is local to the created application.
I have a requirement for an in-memory SQLite database that can be accessed by several applications. Besides creating a database in ramdisk, is there any way to do this?
This is for the embedded Linux platform.
source share