Class/Module Index [+]

Quicksearch

Sequel::Firebird::DatasetMethods

Public Instance Methods

insert(*values) click to toggle source

Insert given values into the database.

# File lib/sequel/adapters/shared/firebird.rb, line 162
def insert(*values)
  if @opts[:sql] || @opts[:returning]
    super
  else
    returning(insert_pk).insert(*values){|r| return r.values.first}
  end
end
insert_select(*values) click to toggle source

Insert a record returning the record inserted

# File lib/sequel/adapters/shared/firebird.rb, line 171
def insert_select(*values)
  returning.insert(*values){|r| return r}
end
requires_sql_standard_datetimes?() click to toggle source
# File lib/sequel/adapters/shared/firebird.rb, line 175
def requires_sql_standard_datetimes?
  true
end
supports_insert_select?() click to toggle source
# File lib/sequel/adapters/shared/firebird.rb, line 179
def supports_insert_select?
  true
end
supports_intersect_except?() click to toggle source

Firebird does not support INTERSECT or EXCEPT

# File lib/sequel/adapters/shared/firebird.rb, line 184
def supports_intersect_except?
  false
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.