Show / Hide Table of Contents

Class ExecuteSqlResponseItemBatch

A statement execution response for batched type requests.

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

Properties

BatchStatementTexts

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

DML statements to execute in jdbc batch mode

DbmsOutput

Declaration
[JsonProperty(PropertyName = "dbmsOutput")]
public string DbmsOutput { get; set; }
Property Value
Type Description
string

Output from DBMS_OUTPUT package. Server output must be enabled (e.g., SET SERVEROUTPUT ON).

Error

Declaration
[JsonProperty(PropertyName = "error")]
public ExecuteSqlResponseItemError Error { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemError

Properties

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

Responses

Declaration
[JsonProperty(PropertyName = "responses")]
public List<string> Responses { get; set; }
Property Value
Type Description
List<string>

Responses generated when executing the statements.

Results

Declaration
[JsonProperty(PropertyName = "results")]
public List<int> Results { get; set; }
Property Value
Type Description
List<int>

Results generated when executing the statements.

StatementId

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

The sequence number of the statement. Sequence number of the first statement is 1.

StatementPos

Declaration
[JsonProperty(PropertyName = "statementPos")]
public ExecuteSqlResponseItemStatementPos StatementPos { get; set; }
Property Value
Type Description
ExecuteSqlResponseItemStatementPos

StatementType

Declaration
[JsonProperty(PropertyName = "statementType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementType? StatementType { get; set; }
Property Value
Type Description
StatementType?

The Statement type.

In this article
Back to top