Show / Hide Table of Contents

Class ExecuteSqlInputBatchDetails

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

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

Properties

BatchStatementTexts

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

DML statements to execute in jdbc batch mode

Remarks

Required

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
In this article
Back to top