博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【sqlite】python备份数据库
阅读量:5324 次
发布时间:2019-06-14

本文共 1461 字,大约阅读时间需要 4 分钟。

备份整个数据库的方法:

# coding=utf-8import sqlite3def testBakSqlite():    conn = sqlite3.connect("sqlite_db_mine/testDB.db")    with open('testDB.sql.bak','w') as f:        for line in conn.iterdump():            data = line + '\n'            data = data.encode("utf-8")            f.write(data)    testBakSqlite()

 

 

如果想要备份其中的一个表,没有很好的办法。下面是一些网上的讨论。

You can copy only the single table in an in memory db:

import sqlite3def getTableDump(db_file, table_to_dump):    conn = sqlite3.connect(':memory:')        cu = conn.cursor()    cu.execute("attach database '" + db_file + "' as attached_db")    cu.execute("select sql from attached_db.sqlite_master "               "where type='table' and name='" + table_to_dump + "'")    sql_create_table = cu.fetchone()[0]    cu.execute(sql_create_table);    cu.execute("insert into " + table_to_dump +               " select * from attached_db." + table_to_dump)    conn.commit()    cu.execute("detach database attached_db")    return "\n".join(conn.iterdump())TABLE_TO_DUMP = 'table_to_dump'DB_FILE = 'db_file'print getTableDump(DB_FILE, TABLE_TO_DUMP)

Pro: Simplicity and reliability: you don't have to re-write any library method, and you are more assured that the code is compatible with future versions of the sqlite3 module.

Con: You need to load the whole table in memory, which may or may not be a big deal depending on how big the table is, and how much memory is available.

转载于:https://www.cnblogs.com/dplearning/p/5982267.html

你可能感兴趣的文章
sql常识-SQL 通配符
查看>>
信号灯
查看>>
php 配置正确的时间
查看>>
基于Python对象引用、可变性和垃圾回收详解
查看>>
大数据如何影响百姓生活
查看>>
linux性能测试脚本
查看>>
基于Python的轻量级RPC的实现
查看>>
导入项目后下载jar包问题理解
查看>>
PKUWC 2019 记
查看>>
代理设计模式简单格式(备忘)
查看>>
标记Activex控件为安全脚本
查看>>
错误调试记录1
查看>>
队列实例程序(C语言)
查看>>
一、内存
查看>>
[转]基础知识整理
查看>>
团队作业4——第一次项目冲刺(Alpha版本)5th day
查看>>
Luogu 3810 三维偏序
查看>>
Python中操作SQLAlchemy
查看>>
获取JUnit的执行结果
查看>>
Ubuntu安装MediaInfo
查看>>