我有一个连接到MySQL数据库的芹菜项目。其中一个表定义如下:
class MyQueues(Base):
__tablename__ = 'accepted_queues'
id = sa.Column(sa.Integer, primary_key=True)
customer = sa.Column(sa.String(length=50), nullable=False)
accepted = sa.Column(sa.Boolean, default=True, nullable=False)
denied = sa.Column(sa.Boolean, default=True, nullable=False)
此外,在我有的设置
THREADS = 4
我被困在code.py
:
def load_accepted_queues(session, mode=None):
#make query
pool = session.query(MyQueues.customer, MyQueues.accepted, MyQueues.denied)
#filter conditions
if (mode == 'XXX'):
pool = pool.filter_by(accepted=1)
elif (mode == 'YYY'):
pool = pool.filter_by(denied=1)
elif (mode is None):
pool = pool.filter(\
sa.or_(MyQueues.accepted == 1, MyQueues.denied == 1)
)
#generate a dictionary with data
for i in pool: #<---------- line 90 in the error
l.update({i.customer: {'customer': i.customer, 'accepted': i.accepted, 'denied': i.denied}})
运行时我收到错误:
[20130626 115343] Traceback (most recent call last):
File "/home/me/code/processing/helpers.py", line 129, in wrapper
ret_value = func(session, *args, **kwargs)
File "/home/me/code/processing/test.py", line 90, in load_accepted_queues
for i in pool: #generate a dictionary with data
File "/home/me/envs/me/local/lib/python2.7/site-packages/sqlalchemy/orm/query.py", line 2341, in instances
fetch = cursor.fetchall()
File "/home/me/envs/me/local/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 3205, in fetchall
l = self.process_rows(self._fetchall_impl())
File "/home/me/envs/me/local/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 3174, in _fetchall_impl
self._non_result()
File "/home/me/envs/me/local/lib/python2.7/site-packages/sqlalchemy/engine/base.py", line 3179, in _non_result
"This result object does not return rows. "
ResourceClosedError: This result object does not return rows. It has been closed automatically
所以主要是部分
ResourceClosedError: This result object does not return rows. It has been closed automatically
有时也出现此错误:
DBAPIError :(错误)(,AssertionError('未请求结果长度 长度:\ n期望= 1。实际= 0。位置:21。数据长度:21',)) 'SELECT accepted_queues.customer AS accepted_queues_customer, accepted_queues.accepted AS accepted_queues_accepted, accepted_queues.denied AS accepted_queues_denied \ nFROM accepted_queues \ nWHERE accepted_queues.accepted =%s OR accepted_queues.denied =%s'(1,1)
我无法正确地重现错误,因为它在处理大量数据时通常会发生。我尝试将THREADS = 4
更改为1
,错误消失了。无论如何,它不是一个解决方案,因为我需要保留4
上的线程数。
另外,我对使用
的需要感到困惑for i in pool: #<---------- line 90 in the error
或
for i in pool.all(): #<---------- line 90 in the error
并找不到合适的解释。
所有在一起:有没有建议跳过这些困难?
答案 0 :(得分:11)
所有在一起:有没有建议跳过这些困难?
是肯定的。你绝对不能同时在多个线程中使用Session(或与该Session相关的任何对象)或Connection,特别是对于DBAPI连接非常不安全的MySQL-Python * 。您必须组织您的应用程序,以便每个线程处理它自己的,专用的MySQL-Python连接(以及与该Session相关联的SQLAlchemy Connection / Session /对象),不会泄漏到任何其他线程。
答案 1 :(得分:0)
我在 Python 中使用 variable
时发生了这个错误
并用 UPDATE
解析它
使用熊猫的语句 pd.read_sql()
解决方案:
我只是使用了 mycursor.execute()
而不是 pd.read_sql()
import mysql.connector
和 from sqlalchemy import create_engine
之前:
pd.read_sql("UPDATE table SET column = 1 WHERE column = '%s'" % variable, dbConnection)
之后:
mycursor.execute("UPDATE table SET column = 1 WHERE column = '%s'" % variable)
完整代码:
import mysql.connector
from sqlalchemy import create_engine
import pandas as pd
# Database Connection Setup >
sqlEngine = create_engine('mysql+pymysql://root:root@localhost/db name')
dbConnection = sqlEngine.connect()
db = mysql.connector.connect(
host="localhost",
user="root",
passwd="root",
database="db name")
mycursor = db.cursor()
variable = "Alex"
mycursor.execute("UPDATE table SET column = 1 WHERE column = '%s'" % variable)
答案 2 :(得分:0)
我在使用 SQL-Server
查询 SQLAlchemy
程序时遇到了同样的错误。
就我而言,将 SET NOCOUNT ON
添加到存储过程解决了该问题。
ALTER PROCEDURE your_procedure_name
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for your procedure here
SELECT *
FROM your_table_name;
END;
查看this article了解更多详情