Static Propertygrdb 7.1.0GRDB
strict
Creates a STRICT table.
- iOS
- 15.4+
- macOS
- 12.4+
- tvOS
- 15.4+
- watchOS
- 8.5+
static let strict: TableOptions
Creates a STRICT table.
static let strict: TableOptions
import GRDB
A toolkit for SQLite databases, with a focus on application development
struct TableOptions
Table creation options.
init(rawValue: Int)
static let ifNotExists: TableOptions
Only creates the table if it does not already exist.
static let temporary: TableOptions
Creates a temporary table.
static let withoutRowID: TableOptions
Creates a WITHOUT ROWID
table.
let rawValue: Int