Python:从mysql表中选择时,元组索引必须是整数,而不是str

时间:2012-09-07 20:52:44

标签: python mysql tuples

我有以下方法,我从表中选择所有ID并将它们附加到列表并返回该列表。但是当执行这段代码时,我最终得到元组指标必须是整数...错误。我已经附上了错误和打印输出以及我的方法:

def questionIds(con):
    print 'getting all the question ids'
    cur = con.cursor()
    qIds = []
    getQuestionId = "SELECT question_id from questions_new"
    try:
        cur.execute(getQuestionId)
        for row in cur.fetchall():
            print 'printing row'
            print row
            qIds.append(str(row['question_id']))
    except Exception, e:
        traceback.print_exc()
    return qIds

打印我的方法:

Database version : 5.5.10 
getting all the question ids
printing row
(u'20090225230048AAnhStI',)
Traceback (most recent call last):
  File "YahooAnswerScraper.py", line 76, in questionIds
    qIds.append(str(row['question_id'][0]))
TypeError: tuple indices must be integers, not str

7 个答案:

答案 0 :(得分:24)

python标准mysql库从cursor.execute返回元组。要访问question_id字段,您需要使用row[0],而不是row['question_id']。这些字段的出现顺序与它们在select语句中出现的顺序相同。

提取多个字段的一种不错的方法就像

for row in cursor.execute("select question_id, foo, bar from questions"):
    question_id, foo, bar = row

答案 1 :(得分:8)

MySQLdb模块中有多种游标类型。默认光标返回元组元组中的数据。当我们使用字典光标时,数据以Python字典的形式发送。这样我们就可以通过列名来引用数据。 Source

#!/usr/bin/python
# -*- coding: utf-8 -*-

import MySQLdb as mdb

con = mdb.connect('localhost', 'testuser', 'test623', 'testdb')

with con:

    cur = con.cursor(mdb.cursors.DictCursor)
    cur.execute("SELECT * FROM Writers LIMIT 4")

    rows = cur.fetchall()

    for row in rows:
        print row["Id"], row["Name"]

答案 2 :(得分:5)

我知道问题已经过时了,但我找到了另一种方法,我认为这比接受的解决方案更好。所以我会把它留在这里,万一有人需要它。

创建光标时,您可以使用

cur = connection.cursor(dictionary=True);

这将允许您完全按照自己的意愿进行操作而无需任何其他修改。

rows = cur.fetchall()
for row in rows:
    print "%s %s %s" % (row["Id"], row["Name"], row["Price"])

答案 3 :(得分:2)

你可以在这里看到:enter link description here,我认为这是你想要的

#!/usr/bin/python
# -*- coding: utf-8 -*-

import sqlite3 as lite


con = lite.connect('test.db')    

with con:

    con.row_factory = lite.Row # its key

    cur = con.cursor() 
    cur.execute("SELECT * FROM Cars")

    rows = cur.fetchall()

    for row in rows:
        print "%s %s %s" % (row["Id"], row["Name"], row["Price"])

答案 4 :(得分:2)

从数据库使用字典光标中检索数据

import psycopg2
import psycopg2.extras
con = psycopg2.connect(database="test", user="test", password="test", host="localhost", port="5432")
if con != None:
    print "Connection Established..!\n"
else:
    print "Database Connection Failed..!\n"

cur = con.cursor(cursor_factory=psycopg2.extras.DictCursor)

cur.execute("SELECT * FROM emp")
rows = cur.fetchall()
for row in rows:
    print "%s %s %s" % (row["id"],row["name"],row["address"])

print "\nRecords Display Successfully"
con.commit()
con.close()

答案 5 :(得分:1)

不允许使用整数索引。为了使其正常工作,您可以按照以下规定声明DICT:

VarName = {}

希望这适合你。

答案 6 :(得分:0)

row是一个元组。执行row['question_id']时,您尝试使用字符串索引访问元组,这会导致错误。