吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 993|回复: 1
收起左侧

[求助] python excel 写入mysqll出现问题

[复制链接]
wuming123 发表于 2020-2-29 20:20
[Asm] 纯文本查看 复制代码
# encoding=utf-8

import xlrd
from configparser import ConfigParser
import pymysql
import sys

try:
    boo = xlrd.open_workbook("222.xls") # 文件名,把文件与py文件放在同一目录下
except:
    print("打开excel文件失败!")
try:
    sheet = boo.sheet_by_name("Page1") # execl里面的worksheet1
except:
    print("加载工作表失w败")

        # 连接数据库
try:
    database = pymysql.connect(host="4x'x'x'x'x'x69",
        port = 3306,
        user="x'x'x'x'x'x",xxxxxx
        passwd = "xxxxxxxxxx",
        db = "x'x'x'x'x'xz",
        charset = 'utf8')
except:
    print("未连接到数据库")
cursor = database.cursor()
select = "select count(id) from wp_posts"  # 获取表中xxxxx记录数
cursor.execute(select)  # 执行sql语句
line_count = cursor.fetchone()

# print(line_count[0])

for i in range(1, sheet.nrows):  # 第一行是标题名,对应表中的字段名所以应该从第二行开始,计算机以0开始计数,所以值是1

    wzm = sheet.cell(i, 1).value  # 取第i行第0列
    tp = sheet.cell(i, 2).value  # 取第i行第1列,下面依次类推
    lj = sheet.cell(i, 11).value

# create_time = now()
value = (wzm, tp, lj )
insert = "INSERT INTO dm_intention_pool(post_title,post_content,guid)VALUES(%s,%s,%s)"
cursor.execute(insert,value)  # 执行sql语句
update = "UPDATE `wp_posts`  SET `create_time` =now(),`update_time` =now() where id > %s"
cursor.execute(update, line_count[0])  # 执行sql语句
database.commit()  # 提交

cursor.close()  # 关闭连接
database.close() 



运行到cursor.execute(insert,value) # 执行sql语句这个地方就出错了     代码是抄来的   sql语句不会  大神帮帮我把   万分感谢

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

cfsimon 发表于 2020-3-4 10:06
select = "select count(id) from wp_posts"  # 获取表中xxxxx记录数
  这条Sql语句没有问题 问题可能出在数据库里 建议看一下数据库 Table名有没有错误  是否存在ID列
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 20:24

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表