Show / Hide Table of Contents

Class ExecuteSqlResponseItemError

Error details.

Inheritance
object
ExecuteSqlResponseItemError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsruntimeService.Models
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class ExecuteSqlResponseItemError

Properties

ErrorCode

Declaration
[JsonProperty(PropertyName = "errorCode")]
public int? ErrorCode { get; set; }
Property Value
Type Description
int?

Error code.

ErrorColumn

Declaration
[JsonProperty(PropertyName = "errorColumn")]
public int? ErrorColumn { get; set; }
Property Value
Type Description
int?

Error column number.

ErrorDetails

Declaration
[JsonProperty(PropertyName = "errorDetails")]
public string ErrorDetails { get; set; }
Property Value
Type Description
string

Error details.

ErrorLine

Declaration
[JsonProperty(PropertyName = "errorLine")]
public int? ErrorLine { get; set; }
Property Value
Type Description
int?

Error line number.

ErrorMessage

Declaration
[JsonProperty(PropertyName = "errorMessage")]
public string ErrorMessage { get; set; }
Property Value
Type Description
string

Error message.

In this article
Back to top