Exception: ActiveRecord::NoDatabaseError

Inherits:
StatementInvalid show all
Includes:
ActiveSupport::ActionableError
Defined in:
lib/active_record/errors.rb

Overview

Raised when a given database does not exist.

Instance Attribute Summary

Attributes inherited from StatementInvalid

#binds, #sql

Attributes inherited from AdapterError

#connection_pool

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StatementInvalid

#set_query

Constructor Details

#initialize(message = nil, connection_pool: nil) ⇒ NoDatabaseError

Returns a new instance of NoDatabaseError.



342
343
344
# File 'lib/active_record/errors.rb', line 342

def initialize(message = nil, connection_pool: nil)
  super(message || "Database not found", connection_pool: connection_pool)
end

Class Method Details

.db_error(db_name) ⇒ Object



347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/active_record/errors.rb', line 347

def db_error(db_name)
  NoDatabaseError.new("    Database not found: \#{db_name}. Available database configurations can be found in config/database.yml.\n\n    To resolve this error:\n\n    - Create the database by running:\n\n        bin/rails db:create\n\n    - Verify that config/database.yml contains the correct database name.\n  MSG\nend\n")