Maison  >  Questions et réponses  >  le corps du texte

python爬虫 - Python 爬虫抓取网页数据,不能插入数据库中,求指点???

大家讲道理大家讲道理2763 Il y a quelques jours407

répondre à tous(4)je répondrai

  • PHPz

    PHPz2017-04-17 15:49:39

    代码没有仔细看,但是很明显的问题是insert语句的execute之后没有commit transcation

    解决方法:

    cur.execute('insert into ipList(ipList) values(%s)', ip_list[j])的下一行添加

    conn.commit()

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-17 15:49:39

    要是没出异常,那指定是数据库用的InnoDB引擎吧?
    你得提交事务,execute完所有语句之后,加上conn.commit()试试

    répondre
    0
  • 高洛峰

    高洛峰2017-04-17 15:49:39

    插入之后,你可以 在用命令行去查询查询或者插入 看数据库是否会被锁定。。就知道是不是 事务未结束了

    répondre
    0
  • 阿神

    阿神2017-04-17 15:49:39

    或者开启自动提交conn.autocommit(True)

    répondre
    0
  • Annulerrépondre