Rajan, Vivek K wrote:
As I understand it is possible to us in-memory SQLite database. Does someone have example C/C++ code to demonstrate techniques for using in-memory SQLite database?
You use sqlite3_open to open a database with a special name ":memory:". Then just use it as you would a regular file-based database.
Igor Tandetnik

