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 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
# File lib/sequel/adapters/shared/firebird.rb, line 175 def requires_sql_standard_datetimes? true end
# File lib/sequel/adapters/shared/firebird.rb, line 179 def supports_insert_select? true end
Firebird does not support INTERSECT or EXCEPT
# File lib/sequel/adapters/shared/firebird.rb, line 184 def supports_intersect_except? false end
Generated with the Darkfish Rdoc Generator 2.