Method: Sequel::Database#execute_insert
- Defined in:
- lib/sequel/database.rb
#execute_insert(sql, opts = {}, &block) ⇒ Object
Method that should be used when issuing a INSERT statement. By default, calls execute_dui.
287 288 289 |
# File 'lib/sequel/database.rb', line 287 def execute_insert(sql, opts={}, &block) execute_dui(sql, opts, &block) end |