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): ...