Insert given values into the database.
# File lib/sequel/adapters/shared/firebird.rb, line 160 def insert(*values) if @opts[:sql] || @opts[:returning] super else returning(insert_pk).insert(*values){|r| return r.values.first} end end
Insert a record returning the record inserted
# File lib/sequel/adapters/shared/firebird.rb, line 169 def insert_select(*values) returning.insert(*values){|r| return r} end
# File lib/sequel/adapters/shared/firebird.rb, line 173 def requires_sql_standard_datetimes? true end
# File lib/sequel/adapters/shared/firebird.rb, line 177 def supports_insert_select? true end
Firebird does not support INTERSECT or EXCEPT
# File lib/sequel/adapters/shared/firebird.rb, line 182 def supports_intersect_except? false end
Generated with the Darkfish Rdoc Generator 2.