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

python 2.7导入excel到mysql

时间:2018-12-18 19:38:18      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:table   .sh   pytho   http   exe   har   name   str   分享图片   

文件目录如下

技术分享图片

# -*- coding:utf-8 -*-
import xlrd
import MySQLdb
# Open the workbook and define the worksheet
book = xlrd.open_workbook("3.xls")
sheet = book.sheet_by_name("Table1")

#建立一个MySQL连接
database = MySQLdb.connect (host="", user = "", passwd = "", db = "", port = 3306, charset=‘utf8‘)

# 获得游标对象, 用于逐行遍历数据库数据
cursor = database.cursor()

# 创建插入SQL语句
query = """INSERT INTO t_test (id_card) VALUES (%s)"""
# 创建一个for循环迭代读取xls文件每行数据的, 从第二行开始是要跳过标题
for r in range(1, sheet.nrows):
id_card = sheet.cell(r,0).value

values = (id_access,id_user,haspermission,id_operation)

# 执行sql语句
cursor.execute(query, values)

# 关闭游标
cursor.close()

# 提交
database.commit()

# 关闭数据库连接
database.close()

# 打印结果
print ""
print "Done! "
print ""
columns = str(sheet.ncols)
rows = str(sheet.nrows)
print u"我刚导入了 " +columns + u" 列 and " + rows + u" 行数据到MySQL!"

 

python 2.7导入excel到mysql

标签:table   .sh   pytho   http   exe   har   name   str   分享图片   

原文地址:https://www.cnblogs.com/minyi/p/10138854.html

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