Module: ArJdbc::MsSQL::LimitHelpers::SqlServer2000AddLimitOffset

Defined in:
lib/arjdbc/mssql/limit_helpers.rb

Instance Method Summary collapse

Instance Method Details

#add_limit_offset!(sql, options) ⇒ Object



56
57
58
59
60
61
62
# File 'lib/arjdbc/mssql/limit_helpers.rb', line 56

def add_limit_offset!(sql, options)
  if options[:limit]
    order = "ORDER BY #{options[:order] || determine_order_clause(sql)}"
    sql.sub!(/ ORDER BY.*$/i, '')
    SqlServerReplaceLimitOffset.replace_limit_offset!(sql, options[:limit], options[:offset], order)
  end
end