API Collection
SQLRow Implementations
Topics
Instance Properties
allColumnsThe list of all column names available in the row, in no particular order.
Instance Methods
contains(column:)Returnstrueif the given column name is available in the row,falseotherwise.decode(column:as:)If the given column name exists in the row, attempt to decode it as the given type and return the result if successful.decodeNil(column:)Must 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.