Show / Hide Table of Contents

Class ExecuteSqlInputScriptSqlRequestDetails

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

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

Properties

Properties

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

Client properties returned as-is in the response

SqlRequests

Declaration
[Required(ErrorMessage = "SqlRequests is required.")]
[JsonProperty(PropertyName = "sqlRequests")]
public List<ExecuteSqlInputDetails> SqlRequests { get; set; }
Property Value
Type Description
List<ExecuteSqlInputDetails>

The SQL statements to execute.

Remarks

Required

In this article
Back to top