Show / Hide Table of Contents

Class MySqlQueryDetails

The details of a given MySQL query, it consists of the query sample details, the explain plan and potential warnings.

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

Properties

QueryExplainPlan

Declaration
[JsonProperty(PropertyName = "queryExplainPlan")]
public MySqlQueryExplainPlan QueryExplainPlan { get; set; }
Property Value
Type Description
MySqlQueryExplainPlan

QueryMessages

Declaration
[JsonProperty(PropertyName = "queryMessages")]
public List<MySqlQueryMessage> QueryMessages { get; set; }
Property Value
Type Description
List<MySqlQueryMessage>

The errors, warnings and notes that could be raised by the execution of the query.

QuerySampleDetails

Declaration
[Required(ErrorMessage = "QuerySampleDetails is required.")]
[JsonProperty(PropertyName = "querySampleDetails")]
public MySqlQuerySampleDetails QuerySampleDetails { get; set; }
Property Value
Type Description
MySqlQuerySampleDetails
Remarks

Required

In this article
Back to top