module Sequel::Plugins::PreparedStatements::ClassMethods

  1. lib/sequel/plugins/prepared_statements.rb

Methods

Public Instance

  1. inherited

Public Instance methods

inherited (subclass)

Setup the datastructure used to hold the prepared statements in the subclass.

[show source]
# File lib/sequel/plugins/prepared_statements.rb, line 39
def inherited(subclass)
  super
  subclass.instance_variable_set(:@prepared_statements, :insert=>{}, :insert_select=>{}, :update=>{}, :lookup_sql=>{}, :fixed=>{})
end