我使用dbf 0.95.004,我需要从表中选择一个字段。示例,文档
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):
在文档中。
当然,我可以在没有 sql 的情况下这样做:
for record in table:
record['name']
但我需要使用 sql-select。那么,如何解决呢?