且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2023-01-22 09:10:22

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

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