Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know where I can read about valid configuration options for database.yml for ActiveRecord. I know the basic ones like adapter, database, username, password, etc., but I would like to have the full list for each adapter. Where would I find that?

share|improve this question
@bilash.saha: I don't see how that answers my question. – moritz Oct 22 '11 at 17:39
Its not the answer of your question.I think you know all valid configuration options for database.yml. – bilash.saha Oct 22 '11 at 17:41
.. and what about other adapters? Additionally the page you linked to mentions a 'sochost' option that I didn't know. That's my point whenever I read something about database.yml, new options pop out ... so where is the reference for all of them? – moritz Oct 22 '11 at 17:47
Sorry.There is nothing i found according to your need.Thinking of writting a blog with all options for database.yml. – bilash.saha Oct 22 '11 at 18:11

1 Answer

up vote 3 down vote accepted

I found a gist of database.yml examples using mysql, postgres, and sqlite3, and the Rails 3.2 source code for connection adapters provides good insight as well.

Looks to me that the following are the most widely used options:

  • adapter
  • encoding
  • database
  • pool
  • username
  • password
  • socket
  • host
  • port
  • timeout

The Rails 3.2 connection_specification.rb file looks like it simply merges any options you include, so I'd say what options you include are dependant on the database adapter you choose to use (lines 58-74):

def connection_url_to_hash(url) # :nodoc:
  config = URI.parse url
  adapter = config.scheme
  adapter = "postgresql" if adapter == "postgres"
  spec = { :adapter  => adapter,
           :username => config.user,
           :password => config.password,
           :port     => config.port,
           :database => config.path.sub(%r{^/},""),
           :host     => config.host }
  spec.reject!{ |_,value| !value }
  if config.query
    options = Hash[config.query.split("&").map{ |pair| pair.split("=") }].symbolize_keys
    spec.merge!(options)
  end
  spec
end
share|improve this answer
Very nice, Thanks! – moritz Mar 1 '12 at 9:13

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.