Show / Hide Table of Contents

Class ExecuteSqlOutputDetails

Defines how the script result should be stored

Inheritance
object
ExecuteSqlOutputDetails
ExecuteSqlOutputObjectStorageDetails
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
[JsonConverter(typeof(ExecuteSqlOutputDetailsModelConverter))]
public class ExecuteSqlOutputDetails

Properties

ResultDispositionTemplates

Declaration
[JsonProperty(PropertyName = "resultDispositionTemplates")]
public List<ExecuteSqlOutputResultDispositionTemplate> ResultDispositionTemplates { get; set; }
Property Value
Type Description
List<ExecuteSqlOutputResultDispositionTemplate>

Defines how the result of commands in a script should be stored. If the command does not match any template filter, the result will be inline.

In this article
Back to top