Hello all,

Suppose I have ZSQL Method called SelectCustomers:

-----

select * from Customers

-----

In my Python script I have:

-----

Result = context.SelectCustomers

-----

I can get values from Result:

Result[recordIND][fieldIND]

But how can I get the names of fields in Result (suppose I don’t know the structure of Customers table)?

Any ideas?

Thanks in advance,

Paul.