Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using AR with SQLServer adapter on Rails2/linux. On my local env, I can easily change freetds and odbc.ini files to trace back and find out the connection information. But in test envs, this information constantly changes and gets out of sync, so I'm trying to put it in our logging as well so we can troubleshoot more easily.

Yes, I know TinyTDS does this better, we are moving to that, but not quite there yet.

I can do:

ActiveRecord::Base.connection.current_database

But can't find anything similar for getting the server address or ip.

share|improve this question

1 Answer

i can't remember if there is a public API for this, but you can get the config of AR like this

ActiveRecord::Base.connection.instance_variable_get '@config'

this returns the config hash, which includes the host

share|improve this answer
ack, that would work if it were some other driver... but on mine... no dice: (rdb:2) MyARClass.connection > #<ActiveRecord::ConnectionAdapters::SQLServerAdapter version: 2.2.19, year: 2008, connection_options: ["DBI:ODBC:mydsn", "*******", "*******"]> (rdb:2) MyARClass.connection.instance_variable_get '@config' > nil – Larry Kyrala Mar 7 '12 at 21:03
i have no SQLServer to test, but MyARClass.connection.connection_options is not possible? – beanie Mar 7 '12 at 22:28
Apparently not? >> MyARClass.connection.connection_options NoMethodError: undefined method 'connection_options' for #<ActiveRecord::ConnectionAdapters::SQLServerAdapter:0x00000003726700> from (irb):4 from /local/rvm/rubies/ruby-1.9.2-p290/bin/irb:16:in '<main>' – Larry Kyrala Mar 7 '12 at 23:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.