Show / Hide Table of Contents

Class ExecuteSqlResponseItemStatementPos

Position of the statement.

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

Properties

EndLine

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

End line of the statement.

StartLine

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

Start line of the statement. First start line is 1.

In this article
Back to top