API Collection
SQLRow Implementations
Topics
Instance Properties
var allColumns: [String]The list of all column names available in the row, in no particular order.
Instance Methods
func contains(column: String) -> BoolReturnstrueif the given column name is available in the row,falseotherwise.func decode<D>(column: String, as: D.Type) throws -> DIf the given column name exists in the row, attempt to decode it as the given type and return the result if successful.func decodeNil(column: String) throws -> BoolMust returntrueif the given column name is missing from the row or if it exists but has a value equivalent to an SQLNULL, orfalseif the column name exists with a non-NULLvalue.