如何将sqlite表从磁盘数据库复制到python中的内存数据库?

问题描述:

如何将基于磁盘的sqlite表复制到python中的内存数据库?我知道表的模式。

How to copy a disk based sqlite table to a memory database in python? I know the schema of the table.

此代码更通用,但也许它可以帮助你:

this code is more general but maybe it can help you:

import sqlite3

new_db = sqlite3.connect(':memory:') # create a memory database

old_db = sqlite3.connect('test.db')

query = "".join(line for line in old_db.iterdump())

# Dump old database in the new one. 
new_db.executescript(query)

编辑你的指定表,你可以在for循环中这样改变:

EDIT : for getting your specify table you can just change in the for loop like this:

name_table = "test_table"  # name of the table that you want to get.

for line in old_db.iterdump():
    if name_table in line:
        query = line
        break