class ActiveRecord::ConnectionAdapters::SchemaCache

Public Instance Methods

stored_procedure(sp_name) click to toggle source

Get the stored procedure

# File lib/spare/schema_cache.rb, line 6
def stored_procedure(sp_name)
  @stored_procedure ||= {}
  @stored_procedure[sp_name] ||= connection.stored_procedure(sp_name)
end