如何在不使用mysqldump的情况下转储MySQL数据库,只需使用Python包括表结构?
Sam*_*lor 14
我已经解决了这个问题.
import MySQLdb
import os
import datetime
con = MySQLdb.connect(host='localhost', user='root', passwd='password', db='test')
cur = con.cursor()
cur.execute("SHOW TABLES")
data = ""
tables = []
for table in cur.fetchall():
tables.append(table[0])
for table in tables:
data += "DROP TABLE IF EXISTS `" + str(table) + "`;"
cur.execute("SHOW CREATE TABLE `" + str(table) + "`;")
data += "\n" + str(cur.fetchone()[1]) + ";\n\n"
cur.execute("SELECT * FROM `" + str(table) + "`;")
for row in cur.fetchall():
data += "INSERT INTO `" + str(table) + "` VALUES("
first = True
for field in row:
if not first:
data += ', '
data += '"' + str(field) + '"'
first = False
data += ");\n"
data += "\n\n"
now = datetime.datetime.now()
filename = str(os.getenv("HOME")) + "/backup_" + now.strftime("%Y-%m-%d_%H:%M") + ".sql"
FILE = open(filename,"w")
FILE.writelines(data)
FILE.close()
Run Code Online (Sandbox Code Playgroud)
似乎从一点测试中运作良好.
| 归档时间: |
|
| 查看次数: |
10779 次 |
| 最近记录: |