Exception: ActiveRecord::StatementInvalid

Inherits:
AdapterError show all
Defined in:
activerecord/lib/active_record/errors.rb

Overview

Superclass for all database execution errors.

Wraps the underlying database error as cause.

Instance Attribute Summary collapse

Attributes inherited from AdapterError

#connection_pool

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, sql: nil, binds: nil, connection_pool: nil) ⇒ StatementInvalid

Returns a new instance of StatementInvalid.



184
185
186
187
188
# File 'activerecord/lib/active_record/errors.rb', line 184

def initialize(message = nil, sql: nil, binds: nil, connection_pool: nil)
  super(message || $!&.message, connection_pool: connection_pool)
  @sql = sql
  @binds = binds
end

Instance Attribute Details

#bindsObject (readonly)

Returns the value of attribute binds.



190
191
192
# File 'activerecord/lib/active_record/errors.rb', line 190

def binds
  @binds
end

#sqlObject (readonly)

Returns the value of attribute sql.



190
191
192
# File 'activerecord/lib/active_record/errors.rb', line 190

def sql
  @sql
end

Instance Method Details

#set_query(sql, binds) ⇒ Object



192
193
194
195
196
197
198
199
# File 'activerecord/lib/active_record/errors.rb', line 192

def set_query(sql, binds)
  unless @sql
    @sql = sql
    @binds = binds
  end

  self
end