Show / Hide Table of Contents

Class MySqlDigestErrorSummary

Consists of the error and the number of times it is encountered.

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