On 9/24/20 7:53 AM, David Raymond wrote:
Since DictRow's can be indexed by either the field name or the field index (either 
record["ID"] or record[0]) then I think what it "should" be is a little 
ambiguous. But you can always either cast it to a dict, or iterate over .keys() if you want the 
field names.

for field in dict(the_dict):
     ...
or
for field in the_dict.keys():
    ...


Except I think the_dict is actually the_list. I was just about to post a reply to my post saying that my use of the_dict was incorrect as I was actually iterating over a list.

--
Adrian Klaver
adrian.kla...@aklaver.com


Reply via email to