Spec-Zone.ru › Ruby on Rails 7.2

класс ActiveRecord::NoDatabaseError

Родитель:
ActiveRecord::StatementInvalid
Включенные модули:
ActiveSupport::ActionableError

Вызывается, когда указанная база данных не существует.

Публичные методы класса

db_error(db_name) Показать исходный код
# File activerecord/lib/active_record/errors.rb, line 327
      def db_error(db_name)
        NoDatabaseError.new(<<~MSG)
          We could not find your database: #{db_name}. Available database configurations can be found in config/database.yml.

          To resolve this error:

          - Did you not create the database, or did you delete it? To create the database, run:

              bin/rails db:create

          - Has the database name changed? Verify that config/database.yml contains the correct database name.
        MSG
      end
new(message = nil, connection_pool: nil) Показать исходный код
# File activerecord/lib/active_record/errors.rb, line 322
def initialize(message = nil, connection_pool: nil)
  super(message || "Database not found", connection_pool: connection_pool)
end
Вызывает метод суперкласса ActiveRecord::StatementInvalid::new

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

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API