ADSQLCreateViewInstruction
public struct ADSQLCreateViewInstruction: ADSQLInstruction
Holds all the information for a SQL CREATE VIEW instruction.
-
The name of the view being created.
Declaration
Swift
public var viewName: String = ""
-
The list of columns in the view.
Declaration
Swift
public var columnList: [String] = []
-
The SQL SELECT statement used to populate the view.
Declaration
Swift
public var selectStatement: ADSQLSelectInstruction?