Python MySQL - 创建/查询/删除数据库
Posted 子信风蓝蓝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python MySQL - 创建/查询/删除数据库相关的知识,希望对你有一定的参考价值。
#coding=utf-8 import mysql.connector import importlib import sys #连接数据库的信息 mydb = mysql.connector.connect( host=‘115.xx.10.121‘, port=‘3306‘, user=‘root‘, password=‘xxxxxZ6XPXbvos‘, ) mycursor=mydb.cursor() #创建数据库 mycursor.execute(‘create database test_cc‘) #查询数据库 mycursor.execute(‘show databases‘) for x in mycursor: if ‘test_cc‘ in x: print ‘成功‘ #删除数据库 mycursor.execute(‘drop database test_cc‘)
以上是关于Python MySQL - 创建/查询/删除数据库的主要内容,如果未能解决你的问题,请参考以下文章