DB management for Heroku apps

Posted by zetarun on Stack Overflow See other posts from Stack Overflow or by zetarun
Published on 2010-03-16T18:14:37Z Indexed on 2010/03/17 7:31 UTC
Read the original article Hit count: 176

Hi all, I'm fairly new to both Rails and Heroku but I'm seriously thinking of using it as a platform to deploy my Ruby/Rails applications.

I want to use all the power of Heroku, so I prefer the "embedded" PostgreSQL managed by Heroku instead of the addon for Amazon RDS for MySQL, but I'm not so confident without the possibility to access my data in a SQL client...

I know that in a well made app you have no need to access DB, but there are some situations (add rows to a config table, see data not mapped in a view, update some columns for debugging issues, performance monitoring, running queries for reporting, etc.) when this can be good...

How do you solve this problem? What's you experience in a real life app powered by Heroku?

Thanks!

© Stack Overflow or respective owner

Related posts about heroku

Related posts about ruby-on-rails