Show / Hide Table of Contents

Class MySqlDigestErrorSummary

The MySQL digest error and the number of times it is encountered. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.

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

Properties

Error

Declaration
[Required(ErrorMessage = "Error is required.")]
[JsonProperty(PropertyName = "error")]
public MySqlQueryMessage Error { get; set; }
Property Value
Type Description
MySqlQueryMessage
Remarks

Required

OccurrenceCount

Declaration
[Required(ErrorMessage = "OccurrenceCount is required.")]
[JsonProperty(PropertyName = "occurrenceCount")]
public int? OccurrenceCount { get; set; }
Property Value
Type Description
int?

The number of times a MySQL error is encountered.

Remarks

Required

In this article
Back to top