Show / Hide Table of Contents

Class ExecuteSqlResponseFormat

Specifies which major elements of the response are returned

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

Properties

Binds

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

Set to false to exclude binds from response

Response

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

Set to false to exclude response from response

Result

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

Set to false to exclude result from response

ResultSetMetaData

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

Set to false to exclude result set metadata from response

StatementInformation

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

Set to false to exclude statement information from response

StatementText

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

Set to false to exclude statement text from response

In this article
Back to top