1
我使用dbf 0.95.004,我需要從表中選擇一個字段。 Example,docs從dbf文件中選擇字段
import dbf
table = dbf.Table('my.dbf').open()
records = table.sql('select name')
但我有錯誤:
AttributeError: 'Db3Table' object has no attribute 'sql'
我打開dbf.py,找到
def pql(records, command):
不def sql(records, command):
像docs。
Ofcourse,我可以這樣做沒有SQL:
for record in table:
record['name']
但我需要使用SQL的選擇。 那麼,如何解決它?
'AttributeError:'Db3Table'對象沒有屬性'pql'' – tim
@tim:更新的答案 –
感謝您的好庫:) – tim