ERROR - __init__() takes 1 positional argument but 5 were given

在使用python3和pymysql1.0.2版本时遇到初始化错误,原因是新版pymysql链接数据库的方式变化。官方示例代码显示,现在需要使用with语句进行连接和游标操作。解决方案包括回退到pymysql0.9.3版本或者更新代码以匹配新版链接方式。
摘要由CSDN通过智能技术生成

在新服务器上运行python时,得到如下错误。

ERROR - __init__() takes 1 positional argument but 5 were given

原因是因为,pymysql 版本不正确导致。

可正常运行环境为,python3 、pymysql 0.9.3 版本

运行错误的版本,python3 、pymysql 1.0.2版本

错误原因链接mysql数据库报错。

是因为新版的pymysql 链接方式发生了改变。

新版链接方式如下:

import pymysql.cursors

# Connect to the database
connection = pymysql.connect(host='localhost',
                             user='user',
                             password='passwd',
                             database='db',
                             charset='utf8mb4',
                             cursorclass=pymysql.cursors.DictCursor)

with connection:
    with connection.cursor() as cursor:
        # Create a new record
        sql = "INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)"
        cursor.execute(sql, ('webmaster@python.org', 'very-secret'))

    # connection is not autocommit by default. So you must commit to save
    # your changes.
    connection.commit()

    with connection.cursor() as cursor:
        # Read a single record
        sql = "SELECT `id`, `password` FROM `users` WHERE `email`=%s"
        cursor.execute(sql, ('webmaster@python.org',))
        result = cursor.fetchone()
        print(result)

上述代码为官方给出的事例代码。

解决办法。

1、更换pymysql 版本,为0.9.3,即可正常运行

2、升级我们的pymysql链接方式。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

成都-Python开发-王帅

你的鼓励是我创作的最大动力。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值