Heroku PostgreSQL
我需要编辑 Heroku 表中的数据,如何使用 PostgreSQL 的 IDE 或其他解决方案来做到这一点?我对 Heroku 很陌生,所以请你指导我什么是最好的方法。 谢谢
I need to edit data in my tables at Heroku, how can i do that with an IDE for PostgreSQL or some other solution to this? I'm really new to Heroku, so please can you guide me what's the best way around it.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
据我所知,Heroku 不提供对数据库的直接访问。
heroku console
适合您吗?您可以直接通过模型访问数据库。否则,您可能想了解如何导入/导出数据库。
To the best of my knowledge, Heroku does not offer direct access to the database. Does
heroku console
cut it for you? You can access the db through your models directly.Otherwise you may want to look at how to import/export your database.
如果您有权访问专用数据库,您将能够利用“入口”功能来获得与数据库的原始连接,该连接与需要通过 Postgres 有线协议进行通信的所有程序兼容(示例包括:psql、 pgadmin、navicat 或带有 ODBC 的 Microsoft Excel —— 是的,真的,有时还不错!)
但是在共享数据库上,此时你有点运气不佳,除非你以某种方式从 ruby 和 pg gem 中恢复交互。
If you have access to a dedicated database, you will be able to take advantage of the "ingress" feature to get a raw connection to your database, compatible with all programs that need to speak over the Postgres wire protocol (examples include: psql, pgadmin, navicat, or Microsoft Excel with ODBC -- yes, really, and it's not half bad sometimes!)
But on shared databases you are somewhat out of luck at this time unless you somehow bounce your interactions off ruby and the pg gem.
或者(如果您能够)使用 db:pull 将数据库引入本地,在本地完成工作,然后 db:push 将其备份。
或者更可能的是,最简单的选择是从控制台(提示时的 Heroku 控制台)John 执行此操作
。
Alternatively (if you're able to) use db:pull to bring the database locally, do the work locally and then db:push it back up.
Or more likely the easiest option is to do it from console (heroku console at prompt)
John.
对于我的rails应用程序,我使用typus gem,它为应用程序提供了一个非常简单的实现相当漂亮的数据库管理界面。
for my rails app I use the typus gem which provides a very simple to implement fairly nice db admin interface to the application.