PHP / SQLite - Copying a table from disk to memory

后端 未结 6 1770
日久生厌
日久生厌 2020-12-30 10:36

I have a sqlite3 database on my harddrive (file.db) with 5 tables. I\'d like to copy 3 of these tables to an in-memory database (:memory:).

Is there a simple way to

6条回答
  •  执念已碎
    2020-12-30 11:27

    Note that one could always use some kind of shared memory mechanism (e.g. APC, memcache, etc..) to keep sqlite's in-memory databases persistent across connections.

提交回复
热议问题