Show / Hide Table of Contents

Class MySqlQueryExplainPlan

The explain plan for a given MySQL query.

Inheritance
object
MySqlQueryExplainPlan
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 MySqlQueryExplainPlan

Properties

JsonExplain

Declaration
[Required(ErrorMessage = "JsonExplain is required.")]
[JsonProperty(PropertyName = "jsonExplain")]
public string JsonExplain { get; set; }
Property Value
Type Description
string

The json format of the explain plan.

Remarks

Required

JsonExplainVersion

Declaration
[Required(ErrorMessage = "JsonExplainVersion is required.")]
[JsonProperty(PropertyName = "jsonExplainVersion")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MySqlJsonExplainVersion? JsonExplainVersion { get; set; }
Property Value
Type Description
MySqlJsonExplainVersion?

The version of the Json format of MySQL Explain.

Remarks

Required

In this article
Back to top