Show / Hide Table of Contents

Class MySqlQueryExplainPlan

The explain plan for a given MySQL query. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.

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 the MySQL explain plan.

Remarks

Required

In this article
Back to top