# File lib/sdb/active_sdb.rb, line 376
        def find(*args)
          options = args.last.is_a?(Hash) ? args.pop : {}
          case args.first
            when :all   then find_every    options
            when :first then find_initial  options
            else             find_from_ids args, options
          end
        end