Class ExecuteSqlInputScriptSqlRequestDetails
Contains the details for the Script SQL statements to execute on the database connection.
Inherited Members
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