views:

26

answers:

1

What's the preferred method to fetch a subset of records from the database? Use rs.absolute() or Limit?

+3  A: 

It's almost certainly going to be more efficient to craft your SQL to only return the results you want. It also better expresses your intent.

Steven Schlansker