Flowdock
method

multi_statements_enabled?

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: DatabaseStatements
multi_statements_enabled?(flags) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/mysql/database_statements.rb, line 69
          def multi_statements_enabled?(flags)
            if flags.is_a?(Array)
              flags.include?("MULTI_STATEMENTS")
            else
              (flags & Mysql2::Client::MULTI_STATEMENTS) != 0
            end
          end
Register or log in to add new notes.