Skip to main content

is_null

Function is_null 

Source
pub fn is_null(row: &Row, i: usize) -> bool
Expand description

Determine whether the value at the given column is SQL NULL.

Type-aware: matches on the column type to pick the right Option<T> so it works for non-text columns (where Option<String> would be a type mismatch rather than NULL).