method

unprepared_statement

unprepared_statement()
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/abstract_adapter.rb, line 346
      def unprepared_statement
        cache = prepared_statements_disabled_cache.add?(object_id) if @prepared_statements
        yield
      ensure
        cache&.delete(object_id)
      end