MySqlQueryDetails¶
-
class
oci.database_management.models.MySqlQueryDetails(**kwargs)¶ Bases:
objectThe details of a given MySQL query, which consists of the query sample details, the explain plan, and potential warnings. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.
Methods
__init__(**kwargs)Initializes a new MySqlQueryDetails object with values from keyword arguments. Attributes
query_explain_planGets the query_explain_plan of this MySqlQueryDetails. query_messagesGets 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_sample_details (oci.database_management.models.MySqlQuerySampleDetails) – The value to assign to the query_sample_details property of this MySqlQueryDetails.
- query_explain_plan (oci.database_management.models.MySqlQueryExplainPlan) – The value to assign to the query_explain_plan property of this MySqlQueryDetails.
- query_messages (list[oci.database_management.models.MySqlQueryMessage]) – The value to assign to the query_messages property of this MySqlQueryDetails.
-
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
-