class ActiveRecord::ConnectionAdapters::Mysql2Adapter

Parent:
ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter
Included modules:
ActiveRecord::ConnectionAdapters::MySQL::DatabaseStatements

Constants

ADAPTER_NAME
ER_BAD_DB_ERROR

Public Class Methods

database_exists?(config) Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 56
def self.database_exists?(config)
  !!ActiveRecord::Base.mysql2_connection(config)
rescue ActiveRecord::NoDatabaseError
  false
end
new(connection, logger, connection_options, config) Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 50
def initialize(connection, logger, connection_options, config)
  superclass_config = config.reverse_merge(prepared_statements: false)
  super(connection, logger, connection_options, superclass_config)
  configure_connection
end
new_client(config) Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 39
def new_client(config)
  Mysql2::Client.new(config)
rescue Mysql2::Error => error
  if error.error_number == ConnectionAdapters::Mysql2Adapter::ER_BAD_DB_ERROR
    raise ActiveRecord::NoDatabaseError
  else
    raise ActiveRecord::ConnectionNotEstablished, error.message
  end
end

Public Instance Methods

active?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 112
def active?
  @connection.ping
end
disconnect!() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 125
def disconnect!
  super
  @connection.close
end

Disconnects from the database if already connected. Otherwise, this method does nothing.

error_number(exception) Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 94
def error_number(exception)
  exception.error_number if exception.respond_to?(:error_number)
end
quote_string(string) Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 102
def quote_string(string)
  @connection.escape(string)
rescue Mysql2::Error => error
  raise translate_exception(error, message: error.message, sql: "<escape>", binds: [])
end
reconnect!() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 116
def reconnect!
  super
  disconnect!
  connect
end
Also aliased as: reset!
reset!()
Alias for: reconnect!
supports_comments?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 66
def supports_comments?
  true
end
supports_comments_in_create?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 70
def supports_comments_in_create?
  true
end
supports_json?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 62
def supports_json?
  !mariadb? && database_version >= "5.7.8"
end
supports_lazy_transactions?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 78
def supports_lazy_transactions?
  true
end
supports_savepoints?() Show source
# File activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb, line 74
def supports_savepoints?
  true
end

© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.