Show / Hide Table of Contents

Class PreparedStatement

The result of query preparation.

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

Properties

QueryPlan

Declaration
[JsonProperty(PropertyName = "queryPlan")]
public object QueryPlan { get; set; }
Property Value
Type Description
object

A representation of the query plan as a schema-less JSON object.

Statement

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

A base64-encoded, compiled and parameterized version of a SQL statement.

Usage

Declaration
[JsonProperty(PropertyName = "usage")]
public RequestUsage Usage { get; set; }
Property Value
Type Description
RequestUsage
In this article
Back to top