mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
33eb297edf
decrease need to edit AR mysql connect details by setting socket to mysql_config --socket. if it doesn't work on your platform, well, you would've had to edit it anyway. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2558 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
22 lines
477 B
Ruby
22 lines
477 B
Ruby
print "Using native MySQL\n"
|
|
require 'fixtures/course'
|
|
require 'logger'
|
|
|
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
|
|
|
db1 = 'activerecord_unittest'
|
|
db2 = 'activerecord_unittest2'
|
|
|
|
ActiveRecord::Base.establish_connection(
|
|
:adapter => "mysql",
|
|
:socket => `mysql_config --socket`,
|
|
:username => "rails",
|
|
:database => db1
|
|
)
|
|
|
|
Course.establish_connection(
|
|
:adapter => "mysql",
|
|
:socket => `mysql_config --socket`,
|
|
:username => "rails",
|
|
:database => db2
|
|
)
|