shell 指令
mysql.server start //mysql 本地数据库开启
mysql.server stop //关闭
Python 连接Mysql数据库
# beautyDB 为数据库名 beautydb 为表名
conn = MySQLdb.connect(user='root', passwd ='****', db='beautyDB', host='yourlocalhostname', charset="utf8", use_unicode=True)
cursor = conn.cursor()
count = cursor.execute('select beauty_image, image_title from beautydb where id = "%s"' % (str(id)))
#命令编辑完成之后提交命令
conn.commit()
...
#操作结束关闭数据库连接
cursor.close()
conn.close()