可耐芒果

文章
1
资源
0
加入时间
2年10月21天

MySQL在线修改数据库名称

介绍:略思路:借助rename这个命令基本操作:rename olddb.tables to newdb.tables直接脚本执行:#!/usr/bin/env python# -*- coding: utf-8 -*-import MySQLdbimport timeclass m_s:    def __init__(self,host,user,password,port):        ...