Instance Propertygrdb 7.1.0GRDB
isRowID
A boolean value indicating if the primary key is the rowid.
var isRowID: Bool { get }
A boolean value indicating if the primary key is the rowid.
var isRowID: Bool { get }
import GRDB
A toolkit for SQLite databases, with a focus on application development
struct PrimaryKeyInfo
Information about a primary key.
@frozen struct Bool
A value type whose instances are either true
or false
.
var columns: [String] { get }
The columns in the primary key. This array is never empty.
var rowIDColumn: String? { get }
When not nil, the name of the column that contains the INTEGER PRIMARY KEY
.