Method: SQLite3::Database::FunctionProxy#count

Defined in:
lib/sqlite3/database.rb

#countObject

(Only available to aggregate functions.) Returns the number of rows that the aggregate has processed so far. This will include the current row, and so will always return at least 1.



565
566
567
# File 'lib/sqlite3/database.rb', line 565

def count
  @driver.aggregate_count( @func )
end