Protocolgrdb 7.3.0GRDB
_RowLayout
_RowLayout
is a protocol that supports the RowAdapter
protocol. It describes the layout of a base row.
protocol _RowLayout
Browse conforming types_RowLayout
is a protocol that supports the RowAdapter
protocol. It describes the layout of a base row.
protocol _RowLayout
import GRDB
A toolkit for SQLite databases, with a focus on application development
var _layoutColumns: [(Int, String)] { get }
An array of (baseIndex, name) pairs, where baseIndex is the index of a column in a base row, and name the name of that column.
func _layoutIndex(ofColumn name: String) -> Int?
Returns the index of the leftmost column named name
, in a case-insensitive way.