To extract a field from a DbfRecord
instance, you can treat it as a dictionary or as a list.
For example, if the third field of a record r is named COUNT, you can extract the value
of field either as “r['COUNT']” or as “r[2]”.