代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
def create_db(db, name):
try:
# 数据库连接
# 创建游标,通过连接与数据通信
cursor = db.cursor()
# 执行sql语句
cursor.execute('show databases')
rows = cursor.fetchall()
for row in rows:
tmp = list(row)[0]
#判断数据库是否存在
if name == tmp:
print "database is exists"
cursor.execute('drop database if exists ' + name)
cursor.execute('create database ' + name)
# 提交到数据库执行
db.commit()
except MySQLdb.Error, e:
print "Mysql Error %d: %s" % (e.args[0], e.args[1])
raise e
def run_struct(db,file_name):
file = open(file_name)
content = file.read()
content = content.split(";")
try:
cursor = db.cursor()
for line in content:
print line
cursor.execute(line)
db.commit()
except Exception, e:
print "Mysql Error %d: %s" % (e.args[0], e.args[1])
def start(mysql_host,database,username,password):
import MySQLdb
try:
db = MySQLdb.connect(mysql_host,username, password, charset='utf8')
except Exception, e:
return "数据库连接失败!"
print "create database..."
create_db(db,database)
db.close()
db = MySQLdb.connect(mysql_host, username, password,database,charset='utf8')
#创建表结构
print "create_struct ..."
run_struct(db,"item_data.sql")
return "创建完毕"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。