Show / Hide Table of Contents

Class ExecuteSqlInputStandardDetails

Contains the details for the Standard SQL statements to execute on the database connection.

Inheritance
object
ExecuteSqlInputDetails
ExecuteSqlInputStandardDetails
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 ExecuteSqlInputStandardDetails : ExecuteSqlInputDetails

Properties

Binds

Declaration
[JsonProperty(PropertyName = "binds")]
public List<ExecuteSqlBind> Binds { get; set; }
Property Value
Type Description
List<ExecuteSqlBind>

Array of objects specifying the bind information.

Limit

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

The maximum number of rows to return from the query (-1 disables pagination).

Offset

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

The first row to return in the result set.

Properties

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

Client properties returned as-is in the response

ResponseFormat

Declaration
[JsonProperty(PropertyName = "responseFormat")]
public ExecuteSqlResponseFormat ResponseFormat { get; set; }
Property Value
Type Description
ExecuteSqlResponseFormat

StatementText

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

Statements to execute (Can be more than one).

Remarks

Required

In this article
Back to top