database-jruby.yml 716 B

12345678910111213141516171819202122232425262728293031
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. development:
  7. adapter: jdbcmysql
  8. database: hello_world
  9. username: benchmarkdbuser
  10. password: benchmarkdbpass
  11. host: localhost
  12. pool: 5
  13. timeout: 5000
  14. # Warning: The database defined as "test" will be erased and
  15. # re-generated from your development database when you run "rake".
  16. # Do not set this db to the same as development or production.
  17. #production:
  18. # adapter: jdbc
  19. # jndi: java:comp/env/jdbc/hello_world
  20. # pool: 256
  21. production:
  22. adapter: jdbcmysql
  23. database: hello_world
  24. username: benchmarkdbuser
  25. password: benchmarkdbpass
  26. host: localhost
  27. pool: 256
  28. timeout: 5000