码迷,mamicode.com
首页 > 数据库 > 详细

python 创建数据库

时间:2017-05-11 11:32:05      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:cursor   pytho   row   数据通信   database   creat   mysqldb   mysql   odi   


昨天用shell脚本创建数据库,涉及java调用,比较折腾,改用python直接创建数据库,比较方便,好了,直接上代码,相关注释也添加了

# _*_encoding:UTF-8_*_
import MySQLdb

db_host = ‘‘
db_user = ‘‘
db_pw = ‘‘
db_name = ‘vdt‘


def cre_db(host, user, pw, name):
try:
# 数据库连接
db = MySQLdb.connect(host, user, pw, charset=‘utf8‘)
# 创建游标,通过连接与数据通信
cursor = db.cursor()
# 执行sql语句
cursor.execute(‘show databases‘)
rows = cursor.fetchall()
for row in rows:
tmp = "%2s" % row
# 判断数据库是否存在
if name == tmp:
cursor.execute(‘drop database if exists ‘ + name)
cursor.execute(‘create database if not exists ‘ + name)
# 提交到数据库执行
db.commit()
except MySQLdb.Error, e:
print "Mysql Error %d: %s" % (e.args[0], e.args[1])
finally:
# 关闭数据库连接
db.close()


cre_db(db_host, db_user, db_pw)

python 创建数据库

标签:cursor   pytho   row   数据通信   database   creat   mysqldb   mysql   odi   

原文地址:http://www.cnblogs.com/titan5750/p/6839503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!