Show / Hide Table of Contents

Class DatabaseToolsCustomSqlToolToolsetSource

The SQL source. Can contain multiple statements with a mix of queries, DML, DCL, DLL and scripts.

Inheritance
object
DatabaseToolsCustomSqlToolToolsetSource
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsService.Models
Assembly: OCI.DotNetSDK.Databasetools.dll
Syntax
public class DatabaseToolsCustomSqlToolToolsetSource

Properties

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseToolsCustomSqlToolToolsetSourceType? Type { get; set; }
Property Value
Type Description
DatabaseToolsCustomSqlToolToolsetSourceType?

The sql toolset sources type. INLINE is the only possible value.

Remarks

Required

Value

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

The SQL source. Can contain multiple statements with a mix of queries, DML, DCL, DLL and scripts.

Remarks

Required

In this article
Back to top