Skip to content

Instance MethodSQLiteNIO

decodeNil(column:)

Deprecated

Use SQLiteRow.sql(decoder:) to access an SQLiteRow as an SQLRow.

Must return true if the given column name is missing from the row or if it exists but has a value equivalent to an SQL NULL, or false if the column name exists with a non-NULL value.
func decodeNil(column: String) throws -> Bool

Discussion

Corresponds to KeyedDecodingContainer.decodeNil(forKey:), especially with respect to the treatment of “missing” keys.