繁体   English   中英

尝试使用mysql python连接器执行预准备语句时,我得到NotImplementedError

[英]I get NotImplementedError when trying to do a prepared statement with mysql python connector

我想使用预处理语句使用python将数据插入MySQL数据库(版本5.7),但我一直得到一个NotImplementedError。 我在这里关注文档: https//dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorprepared.html

使用mysql-connector-python库的Python 2.7和8.0.11版:

pip show mysql-connector-python
---
Metadata-Version: 2.1
Name: mysql-connector-python
Version: 8.0.11
Summary: MySQL driver written in Python
Home-page: http://dev.mysql.com/doc/connector-python/en/index.html

这是我正在运行的python脚本的清理版本(没有特定的主机名,用户名,密码,列或表):

import mysql.connector
from mysql.connector.cursor import MySQLCursorPrepared

connection = mysql.connector.connect(user=username, password=password,
                                      host='sql_server_host',
                                      database='dbname')
print('Connected! getting cursor')
cursor = connection.cursor(cursor_class=MySQLCursorPrepared)
select = "SELECT * FROM table_name WHERE column1 = ?"
param = 'param1'
print('Executing statement')
cursor.execute(select, (param,))
rows = cursor.fetchall()
for row in rows:
    value = row.column1
print('value: '+ value)

运行时我收到此错误:

Traceback (most recent call last):
  File "test.py", line 18, in <module>
    cursor.execute(select, (param,))
  File "/home/user/.local/lib/python2.7/site-packages/mysql/connector/cursor.py", line 1186, in execute
    self._prepared = self._connection.cmd_stmt_prepare(operation)
  File "/home/user/.local/lib/python2.7/site-packages/mysql/connector/abstracts.py", line 969, in cmd_stmt_prepare
    raise NotImplementedError
NotImplementedError

如果您拥有 CEXT,默认启用 CEXT ,并且在撰写本文时,CEXT不支持预备语句

您可以通过添加关键字参数use_pure=True来禁用连接CEXT,如下所示:

connection = mysql.connector.connect(user=username, password=password,
                                     host='sql_server_host',
                                     database='dbname',
                                     use_pure=True)

CEXT中对mysql-connector-python准备语句的支持将包含在即将发布的mysql-connector-python 8.0.17版本中(根据MySQL错误报告 )。 因此,一旦可用,升级到至少8.0.17以解决此问题,而无需use_pure=True

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM