Module: Sequel::Sequel3DatasetMethods

Defined in:
lib/sequel/extensions/sequel_3_dataset_methods.rb

Constant Summary collapse

COMMA =
Dataset::COMMA

Instance Method Summary collapse

Instance Method Details

#[]=(conditions, values) ⇒ Object

Update all records matching the conditions with the values specified. Returns the number of rows affected.

DB[:table][:id=>1] = {:id=>2} # UPDATE table SET id = 2 WHERE id = 1
# => 1 # number of rows affected


49
50
51
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 49

def []=(conditions, values)
  where(conditions).update(values)
end

#db=(v) ⇒ Object

Change the database for this dataset.



31
32
33
34
35
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 31

def db=(v)
  raise_if_frozen!
  @db = v
  @cache = {}
end

#insert_multiple(array, &block) ⇒ Object

Inserts multiple values. If a block is given it is invoked for each item in the given array before inserting it. See multi_insert as a possibly faster version that may be able to insert multiple records in one SQL statement (if supported by the database). Returns an array of primary keys of inserted rows.

DB[:table].insert_multiple([{:x=>1}, {:x=>2}])
# => [4, 5]
# INSERT INTO table (x) VALUES (1)
# INSERT INTO table (x) VALUES (2)

DB[:table].insert_multiple([{:x=>1}, {:x=>2}]){|row| row[:y] = row[:x] * 2; row }
# => [6, 7]
# INSERT INTO table (x, y) VALUES (1, 2)
# INSERT INTO table (x, y) VALUES (2, 4)


68
69
70
71
72
73
74
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 68

def insert_multiple(array, &block)
  if block
    array.map{|i| insert(block.call(i))}
  else
    array.map{|i| insert(i)}
  end
end

#opts=(v) ⇒ Object

Change the options for this dataset.



38
39
40
41
42
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 38

def opts=(v)
  raise_if_frozen!
  @opts = v
  @cache = {}
end

#qualify_to(table) ⇒ Object

Return a copy of the dataset with unqualified identifiers in the SELECT, WHERE, GROUP, HAVING, and ORDER clauses qualified by the given table. If no columns are currently selected, select all columns of the given table.

DB[:items].where(:id=>1).qualify_to(:i)
# SELECT i.* FROM items WHERE (i.id = 1)


83
84
85
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 83

def qualify_to(table)
  qualify(table)
end

#qualify_to_first_sourceObject

Qualify the dataset to its current first source. This is useful if you have unqualified identifiers in the query that all refer to the first source, and you want to join to another table which has columns with the same name as columns in the current dataset. See qualify_to.

DB[:items].where(:id=>1).qualify_to_first_source
# SELECT items.* FROM items WHERE (items.id = 1)


95
96
97
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 95

def qualify_to_first_source
  qualify
end

#set(*args) ⇒ Object

Alias for update, but not aliased directly so subclasses don’t have to override both methods.



101
102
103
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 101

def set(*args)
  update(*args)
end

#to_csv(include_column_titles = true) ⇒ Object

Returns a string in CSV format containing the dataset records. By default the CSV representation includes the column titles in the first line. You can turn that off by passing false as the include_column_titles argument.

This does not use a CSV library or handle quoting of values in any way. If any values in any of the rows could include commas or line endings, you shouldn’t use this.

puts DB[:table].to_csv # SELECT * FROM table
# id,name
# 1,Jim
# 2,Bob


118
119
120
121
122
123
124
125
# File 'lib/sequel/extensions/sequel_3_dataset_methods.rb', line 118

def to_csv(include_column_titles = true)
  n = naked
  cols = n.columns
  csv = String.new
  csv << "#{cols.join(COMMA)}\r\n" if include_column_titles
  n.each{|r| csv << "#{cols.collect{|c| r[c]}.join(COMMA)}\r\n"}
  csv
end