Class MySqlQueryDetails
The details of a given MySQL query, it consists of the query sample details, the explain plan and potential warnings.
Inherited Members
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