Show / Hide Table of Contents

Class StatementSummary

Information derived from parsing a NoSQL SQL statement.

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

Properties

IndexName

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

The index name from the SQL statement, if present.

IsIfExists

Declaration
[JsonProperty(PropertyName = "isIfExists")]
public bool? IsIfExists { get; set; }
Property Value
Type Description
bool?

True if the statement includes "IF EXISTS."

IsIfNotExists

Declaration
[JsonProperty(PropertyName = "isIfNotExists")]
public bool? IsIfNotExists { get; set; }
Property Value
Type Description
bool?

True if the statement includes "IF NOT EXISTS."

Operation

Declaration
[JsonProperty(PropertyName = "operation")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementSummary.OperationEnum? Operation { get; set; }
Property Value
Type Description
StatementSummary.OperationEnum?

The operation represented in the statement, e.g. CREATE_TABLE.

SyntaxError

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

If present, indicates a syntax error in the statement.

TableName

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

The table name from the SQL statement.

In this article
Back to top