sql >> Database teknologi >  >> RDS >> Mysql

Hvordan bruger man flere databaser til én rails 3.1-app i Heroku?

Arbejder ud fra de tidligere svar, men inkorporerer nogle Rails 3-fordele med konfigurationen og forenkler parsingen...

# config/application.rb
module MyApp
  class Application < Rails::Application
    ... other configs

    config.secondary_database_url = ENV['SECONDARY_DB_URL']
  end
end

Vi ønsker måske at tilsidesætte dette i udvikling / test

# config/environments/development.rb

module MyApp
  class Application < Rails::Application
    ... other configs

    config.secondary_database_url = 'SOME_CONNECTION_STRING'
  end
end    

For nu at konfigurere klassen vil vi få vores modeller til at arve fra...

# lib/active_record/secondary.rb 
module ActiveRecord
  class Secondary < ActiveRecord::Base
    self.abstract_class = true

    # prior to AR 3.2.1
    url = URI.parse( MyApp::Application.config.secondary_database_url )
    establish_connection(
      :adapter  => 'mysql',
      :host     => url.host,
      :username => url.userinfo.split(':')[0],
      :password => url.userinfo.split(':')[1],
      :database => url.path[1..-1],
      :port     => url.port || 3306
    )

    # as of AR 3.2.1
    establish_connection(MyApp::Application.config.secondary_database_url)

  end

  class SecondaryMigration < ActiveRecord::Migration
    def connection
      ActiveRecord::Secondary.connection 
    end
  end

end


  1. Opretter forbindelse til Sage fra Java

  2. Opret forbindelse til mysql-server uden sudo

  3. Authentication plugin 'caching_sha2_password' kan ikke indlæses

  4. sql brug sætning med variabel