ORM::where_not_null PHP Method

where_not_null() public method

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