Show / Hide Table of Contents

Class QueryResultRow

Object that represents a single row of the query result. It contains the queryResultRowData object that contains the actual data represented by the elements of the query result row, and a queryResultRowMetadata object that contains the metadata about the data contained in the query result row.

Inheritance
object
QueryResultRow
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class QueryResultRow

Properties

QueryResultRowData

Declaration
[Required(ErrorMessage = "QueryResultRowData is required.")]
[JsonProperty(PropertyName = "queryResultRowData")]
public Dictionary<string, object> QueryResultRowData { get; set; }
Property Value
Type Description
Dictionary<string, object>

A map containing the actual data represented by a single row of the query result. The key is the column name or attribute specified in the show clause, or an aggregate function in the show clause. The value is the actual value of that attribute or aggregate function of the corresponding single row of the query result set. If an alias name is specified for an attribute or an aggregate function, then the key will be the alias name specified in the show clause. If an alias name is not specified for the group by aggregate function in the show clause, then the corresponding key will be the appropriate aggregate_function_name_column_name (For Example: count(traces) will be keyed as count_traces). The datatype of the valueis presented in the queryResultRowTypeSummaries list in the queryResultMetadata structure, where the i-th queryResultRowTypeSummary objectrepresents the datatype of the i-th value when this map is iterated in order.

Remarks

Required

QueryResultRowMetadata

Declaration
[Required(ErrorMessage = "QueryResultRowMetadata is required.")]
[JsonProperty(PropertyName = "queryResultRowMetadata")]
public Dictionary<string, object> QueryResultRowMetadata { get; set; }
Property Value
Type Description
Dictionary<string, object>

A map containing metadata or add-on data for the data presented in the queryResultRowData map. Data required to present drill down information from the queryResultRowData is presented as key-value pairs.

Remarks

Required

In this article
Back to top