TableOptions
public struct TableOptions : OptionSet
Table creation options
-
Only creates the table if it does not already exist.
Declaration
Swift
public static let ifNotExists: TableOptions -
Creates a temporary table.
Declaration
Swift
public static let temporary: TableOptions -
Creates a without rowid table. See https://www.sqlite.org/withoutrowid.html
Declaration
Swift
public static let withoutRowID: TableOptions -
Creates a strict table. See https://www.sqlite.org/stricttables.html
View on GitHub
Install in Dash
TableOptions Structure Reference