Method: ActiveRecord::ConnectionAdapters::DatabaseStatements#execute
- Defined in:
- lib/active_record/connection_adapters/abstract/database_statements.rb
#execute(sql, name = nil) ⇒ Object
Executes the SQL statement in the context of this connection. This abstract method raises a NotImplementedError.
29 30 31 |
# File 'lib/active_record/connection_adapters/abstract/database_statements.rb', line 29 def execute(sql, name = nil) raise NotImplementedError, "execute is an abstract method" end |