Class ExecuteSqlResponseItemBatch
A statement execution response for batched type requests.
Inheritance
ExecuteSqlResponseItemBatch
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
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
|
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).
|
Declaration
[JsonProperty(PropertyName = "error")]
public ExecuteSqlResponseItemError Error { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "properties")]
public ExecuteSqlResponseItemProperties Properties { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "responses")]
public List<string> Responses { get; set; }
Property Value
| Type |
Description |
| List<string> |
Responses generated when executing the statements.
|
Declaration
[JsonProperty(PropertyName = "results")]
public List<int> Results { get; set; }
Property Value
| Type |
Description |
| List<int> |
Results generated when executing the statements.
|
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.
|
Declaration
[JsonProperty(PropertyName = "statementPos")]
public ExecuteSqlResponseItemStatementPos StatementPos { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "statementType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StatementType? StatementType { get; set; }
Property Value