Heroku PostgreSQL

发布于 2024-10-16 02:26:02 字数 95 浏览 2 评论 0原文

我需要编辑 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

酸甜透明夹心 2024-10-23 02:26:02

据我所知,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.

对岸观火 2024-10-23 02:26:02

如果您有权访问专用数据库,您将能够利用“入口”功能来获得与数据库的原始连接,该连接与需要通过 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.

梨涡 2024-10-23 02:26:02

或者(如果您能够)使用 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.

自我难过 2024-10-23 02:26:02

对于我的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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文