ADSQLDropInstruction
public struct ADSQLDropInstruction: ADSQLInstruction
Holds all information about a SQL DROP instruction.
-
Defines the type of object being removed from the data source.
See moreDeclaration
Swift
public enum Action
-
Defines what is being removed from the data source.
Declaration
Swift
public var action: Action = .view
-
If
true
, the item will only be dropped if it exists in the data source.Declaration
Swift
public var ifExists: Bool = false
-
The name of the item being removed from the data source.
Declaration
Swift
public var itemName: String = ""