class ActiveRecord::ConnectionAdapters::Mysql2Adapter
Constants
- ADAPTER_NAME
- ER_ACCESS_DENIED_ERROR
- ER_BAD_DB_ERROR
- ER_CONN_HOST_ERROR
- ER_UNKNOWN_HOST_ERROR
Public Class Methods
database_exists?(config)
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 64 def self.database_exists?(config) !!ActiveRecord::Base.mysql2_connection(config) rescue ActiveRecord::NoDatabaseError false end
new(connection, logger, connection_options, config)
click to toggle source
Calls superclass method
ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter::new
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 58 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)
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 43 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.db_error(config[:database]) elsif error.error_number == ConnectionAdapters::Mysql2Adapter::ER_ACCESS_DENIED_ERROR raise ActiveRecord::DatabaseConnectionError.username_error(config[:username]) elsif [ConnectionAdapters::Mysql2Adapter::ER_CONN_HOST_ERROR, ConnectionAdapters::Mysql2Adapter::ER_UNKNOWN_HOST_ERROR].include?(error.error_number) raise ActiveRecord::DatabaseConnectionError.hostname_error(config[:host]) else raise ActiveRecord::ConnectionNotEstablished, error.message end end
Public Instance Methods
active?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 118 def active? @connection.ping end
disconnect!()
click to toggle source
Disconnects from the database if already connected. Otherwise, this method does nothing.
Calls superclass method
ActiveRecord::ConnectionAdapters::AbstractAdapter#disconnect!
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 131 def disconnect! super @connection.close end
error_number(exception)
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 100 def error_number(exception) exception.error_number if exception.respond_to?(:error_number) end
quote_string(string)
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 108 def quote_string(string) @connection.escape(string) rescue Mysql2::Error => error raise translate_exception(error, message: error.message, sql: "<escape>", binds: []) end
reconnect!()
click to toggle source
Calls superclass method
ActiveRecord::ConnectionAdapters::AbstractAdapter#reconnect!
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 122 def reconnect! super disconnect! connect end
Also aliased as: reset!
supports_comments?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 74 def supports_comments? true end
supports_comments_in_create?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 78 def supports_comments_in_create? true end
supports_json?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 70 def supports_json? !mariadb? && database_version >= "5.7.8" end
supports_lazy_transactions?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 86 def supports_lazy_transactions? true end
supports_savepoints?()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 82 def supports_savepoints? true end
Private Instance Methods
configure_connection()
click to toggle source
Calls superclass method
ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter#configure_connection
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 148 def configure_connection @connection.query_options[:as] = :array super end
connect()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 143 def connect @connection = self.class.new_client(@config) configure_connection end
full_version()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 153 def full_version schema_cache.database_version.full_version_string end
get_full_version()
click to toggle source
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 157 def get_full_version @connection.server_info[:version] end
translate_exception(exception, message:, sql:, binds:)
click to toggle source
Calls superclass method
ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter#translate_exception
# File lib/active_record/connection_adapters/mysql2_adapter.rb, line 161 def translate_exception(exception, message:, sql:, binds:) if exception.is_a?(Mysql2::Error::TimeoutError) && !exception.error_number ActiveRecord::AdapterTimeout.new(message, sql: sql, binds: binds) else super end end