ORM::where_null PHP Method

where_null() public method

Add a WHERE column IS NULL clause to your query
public where_null ( $column_name )
    public function where_null($column_name)
    {
        return $this->_add_where_no_value($column_name, "IS NULL");
    }
ORM