gpt4 book ai didi

python - 使用 psycopg2 执行 SQL 查询

转载 作者:行者123 更新时间:2023-12-01 02:09:29 25 4
gpt4 key购买 nike

我正在尝试使用 psycopg2 将列表传递到 postgres 表中。我不断遇到异常:

  File "c:/Python27/Projects/Newsletter/newsletter.py", line 148, in <module>
insert_pg(listString)
File "c:\Python27\Projects\Newsletter\pg.py", line 23, in insert_pg
print('pggggg', error)
IOError: [Errno 0] Error

数据相当困惑(请原谅我),但这是代码片段。我从 newsletter.py 运行它:

if __name__ == '__main__':
dataList = [today, str(int(round(float(str(spxprice.replace(',', '')))))), str(int(round(float(spxchg)))), str(int(round(float(spxpchg)))), str(int(round(float(str(dowprice.replace(',', '')))))), dowpchg, str(int(round(float(dowchg)))), str(int(round(float(str(ndxprice.replace(',', '')))))), ndxpchg, str(int(round(float(ndxchg)))), ''.join(oilPrice[4]), ''.join(getOilChg), ''.join(getOilPct), dayName]

listString = ', '.join(dataList)

insert_pg(listString)

这是 pg.py,我从以下位置导入 insert_pg:

import psycopg2
from config import config
import sys


def insert_pg(thedata):
sql = ("""insert into prices values (%s);""" % thedata)

conn = None
try:
# read database configuration
params = config()
# connect to the PostgreSQL database
conn = psycopg2.connect(**params)
# create a new cursor
cur = conn.cursor()
# execute the INSERT statement
cur.execute(sql)
conn.commit()
cur.close()
print 'Success.'
except (Exception, psycopg2.DatabaseError) as error:
print('pggggg', error)
finally:
if conn is not None:
conn.close()

打印时sql的输出:

插入价格值(02/14/2018、2675、12、0、24698、0.23、58、7074、0.86、60、59.09、-0.06、-0.10%、星期三);

不知道我哪里出错了。数据库连接正常。有什么想法吗?

最佳答案

首先,您没有使用绑定(bind)变量,这是不好的做法,因为这可能会导致 SQL 注入(inject)。你应该做的是这样的:

cur.execute('INSERT INTO PRICES(col1, col2, ...) VALUES(%(val1)s, %(val2)s, ...)', kwargs)

其中kwargs是与列名称和值相对应的键/值对的字典。这是正确的做法。

关于python - 使用 psycopg2 执行 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48791244/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com