Try OpenEdge Now
skip to main content
Debugging and Troubleshooting
Troubleshooting Resources : Other Diagnostics Resources : Analyzing procedures and queries : INDEX-INFORMATION attribute of the query object handle
 
INDEX-INFORMATION attribute of the query object handle
The INDEX-INFORMATION attribute provides data on a dynamic query similar to what XREF provides on a static query. For example, given a dynamic query q1, where the QUERY-PREPARE string is:

FOR EACH customer WHERE customer.custnum < 3, EACH order OF customer,
  EACH orderline
The query returns these attribute values:

q1:INDEX-INFORMATION[1] = "Cust-Num"
q1:INDEX-INFORMATION[1] = "Cust-Order"
q1:INDEX-INFORMATION[1] = "WHOLE-INDEX,order-line"
For detailed information on the INDEX-INFORMATION attribute, see OpenEdge Development: ABL Reference.
To obtain additional query information and statistics use the QryInfo log entry type. For detailed information see the Query information logging.