我正在尝试在 python (2.7) 中编写一些代码:
- 在 sqlite 中打开数据库
- 对数据库进行查询,得到一些结果。数据库有多个表,我需要来自不同表的记录:数据库是这样的:
- data.db ---> [table1[col1, col2, col3], table2[col1, col2, col3]]
- 遍历结果
- 对结果做一些事情(例如在记录中有一个需要解码的日期)
- 将所有记录存储在一个命名元组中以供进一步访问
从现在开始,我已经完成了第 1、2、3 和 4 部分,但我不知道如何将结果存储在命名元组中。假设在每次迭代中,我将我需要的数据存储在 namedtuple 中的临时变量中:
for result in results:
var1 = table1.col1
var2 = table2.col1
var3 = table3.col1
(现在我想对变量做点什么,但这不是问题,并将 3 个变量存储在一个命名元组中)
contacts = namedtuple('contacts', 'Z_PK ZFULLNAME ZPHONE ZTEXT ZDATE')
if has_contacts_sqlite:
# reading contacts from database
# 1st step: ZWAPHONE table
query = "SELECT * FROM ZWAPHONE"
self.tempcur.execute(query)
tempcontacts = self.tempcur.fetchall()
for contact in tempcontacts:
id = contact.Z_PK
contact_key = contact.ZCONTACT
favorite_key = contact.ZFAVORITE
status_key = contact.ZSTATUS
phonenum = contact.ZPHONE
# 2nd step: name from ZWACONTACT table
query = "SELECT * FROM ZWACONTACT WHERE Z_PK=?;"
self.tempcur.execute(query, [contact_key])
contact_entry = self.tempcur.fetchone()
if contact_entry == None:
name = "N/A"
else:
name = contact_entry.ZFULLNAME
# 3rd step: status from ZWASTATUS table
query = "SELECT * FROM ZWASTATUS WHERE Z_PK=?;"
self.tempcur.execute(query, [status_key])
status_entry = self.tempcur.fetchone()
if status_entry == None:
text = "N/A"
date = "N/A"
else:
text = status_entry.ZTEXT
date = self.formatDate(status_entry.ZDATE)
#print ("%s" %(id))
#print ("%s" %(name.encode(sys.stdout.encoding, errors='replace')))
#print ("%s" %(phonenum.encode(sys.stdout.encoding, errors='replace')))
#print ("%s" %(text.encode(sys.stdout.encoding, errors='replace')))
#print ("%s" %(date))
contact = contacts(id, name, phonenum, text, date)
print contacts
for line in contacts:
print line