Forum Discussion

talisker's avatar
talisker
New Contributor
8 years ago
Solved

Retrieving the column names from the result of an ADO database query in Python

Hi all,    I want to create a somewhat generic function in Python where I get a key/value dictionary from a database query that I know returns only one row. I want to do something like this:     ...
  • tristaanogre's avatar
    8 years ago
    data.Fields.Item[index].Name

    The above will return the name of the item at the indicated index.