It's possible to create an in memory SQlite database:
rc = sqlite3_open(":memory:", &db);
but if I've understood the documentation correctly, this database is local to the app that created it.
I have a requirement for an in memory SQLite database which can be accessed by several apps. Other than creating the database on a ramdisk, is there any way of doing this?
This is for an embedded linux platform.