Show / Hide Table of Contents

Class MySqlFetchError

Error from fetch operation of a MySQL server replication channel.

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

Properties

LastErrorMessage

Declaration
[Required(ErrorMessage = "LastErrorMessage is required.")]
[JsonProperty(PropertyName = "lastErrorMessage")]
public string LastErrorMessage { get; set; }
Property Value
Type Description
string

The error message of the most recent error that caused the I/O thread to stop.

Remarks

Required

LastErrorNumber

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

The error number of the most recent error that caused the I/O thread to stop.

Remarks

Required

TimeLastError

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

The timestamp when the most recent I/O error occurred.

Remarks

Required

In this article
Back to top