Module | Sequel::Dataset::StoredProcedures |
In: |
lib/sequel/adapters/utils/stored_procedures.rb
|
For the given type (:select, :first, :insert, :update, or :delete), run the database stored procedure with the given name with the given arguments.
# File lib/sequel/adapters/utils/stored_procedures.rb, line 43 43: def call_sproc(type, name, *args) 44: prepare_sproc(type, name).call(*args) 45: end