Method: Sequel::Dataset#single_record!

Defined in:
lib/sequel/dataset/actions.rb

#single_record!Object

Returns the first record in dataset, without limiting the dataset. Returns nil if the dataset has no records. Users should probably use first instead of this method. This should only be used if you know the dataset is already limited to a single record. This method may be desirable to use for performance reasons, as it does not clone the receiver. Example:

DB[:test].single_record! # SELECT * FROM test
# => {:column_name=>'value'}
[View source]

789
790
791
# File 'lib/sequel/dataset/actions.rb', line 789

def single_record!
  with_sql_first(select_sql)
end