MySqlQueryDetails

class oci.database_management.models.MySqlQueryDetails(**kwargs)

Bases: object

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

Methods

__init__(**kwargs) Initializes a new MySqlQueryDetails object with values from keyword arguments.

Attributes

query_explain_plan Gets the query_explain_plan of this MySqlQueryDetails.
query_messages Gets the query_messages of this MySqlQueryDetails.
query_sample_details [Required] Gets the query_sample_details of this MySqlQueryDetails.
__init__(**kwargs)

Initializes a new MySqlQueryDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
query_explain_plan

Gets the query_explain_plan of this MySqlQueryDetails.

Returns:The query_explain_plan of this MySqlQueryDetails.
Return type:oci.database_management.models.MySqlQueryExplainPlan
query_messages

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

Returns:The query_messages of this MySqlQueryDetails.
Return type:list[oci.database_management.models.MySqlQueryMessage]
query_sample_details

[Required] Gets the query_sample_details of this MySqlQueryDetails.

Returns:The query_sample_details of this MySqlQueryDetails.
Return type:oci.database_management.models.MySqlQuerySampleDetails