Show / Hide Table of Contents

Class MySqlQueryMessage

The MySQL error, warning or note raised when a query is run, if any.

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

Properties

Code

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

The MySQL code of the raised error, warning or note.

Remarks

Required

Level

Declaration
[Required(ErrorMessage = "Level is required.")]
[JsonProperty(PropertyName = "level")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MySqlMessageSeverity? Level { get; set; }
Property Value
Type Description
MySqlMessageSeverity?

The level of severity of the MySQL message.

Remarks

Required

MessageText

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

The MySQL message text of the raised error, warning or note.

Remarks

Required

In this article
Back to top