gpt4 book ai didi

python - 在特定路径中的简单数据库表转储

转载 作者:可可西里 更新时间:2023-11-01 09:04:32 29 4
gpt4 key购买 nike

我怎样才能只转储 MySQL 数据库表,它将存储我在驱动器 'c:' 上,而不是整个数据库

这是我正在运行的 python 连接脚本:

cnx = mysql.connector.connect(user='test',
password ='test',host='192.168.25.63',
database='test',port='3306')

我还使用子流程引用了这个问题: How to copy a database with mysqldump and mysql in Python?

我只想拥有一个 python 脚本,就像使用 windows 命令拥有 MySQLdump 一样。

最佳答案

您可以简单地将以下命令与 popen 一起使用:

import subprocess
subprocess.popen("mysqldump db_name table_name > your_path/table_name.sql", shell=True)

关于python - 在特定路径中的简单数据库表转储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33537900/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com