method
add_limit_offset!
rails latest stable - Class:
ActiveRecord::ConnectionAdapters::DatabaseStatements
add_limit_offset!(sql, options)public
Appends LIMIT and OFFSET options to an SQL statement, or some SQL fragment that has the same semantics as LIMIT and OFFSET.
options must be a Hash which contains a :limit option and an :offset option.
This method modifies the sql parameter.
This method is deprecated!! Stop using it!
Examples
add_limit_offset!('SELECT * FROM suppliers', {:limit => 10, :offset => 50})
generates
SELECT * FROM suppliers LIMIT 10 OFFSET 50