续集尝试使用 postgresql 而不是 postgres 作为适配器

发布于 2024-11-09 22:49:14 字数 645 浏览 0 评论 0原文

有一个简单的heroku应用程序,带有sequel和postgres。但是,我得到:

% heroku rake db:migrate
rake aborted!
LoadError: no such file to load -- sequel/adapters/postgresql
/app/.bundle/gems/ruby/1.9.1/gems/sequel-3.23.0/lib/sequel/core.rb:249:in `require'

sequel-3.23.0/lib/sequel/adapters/ 中没有 postgresql.rb 我的本地驱动器上有一个 postgres.rb。我正在使用免费计划。

% heroku info
...
Dynos:          1
Workers:        0
Repo size:      9M
Slug size:      8M
Stack:          bamboo-mri-1.9.2
Data size:      (empty)
Addons:         Basic Logging, Shared Database 5MB


% heroku pg:info
=== kampanchi database SHARED_DATABASE_URL

Had a simple heroku app with sequel and postgres. However, I got:

% heroku rake db:migrate
rake aborted!
LoadError: no such file to load -- sequel/adapters/postgresql
/app/.bundle/gems/ruby/1.9.1/gems/sequel-3.23.0/lib/sequel/core.rb:249:in `require'

There is no postgresql.rb in the sequel-3.23.0/lib/sequel/adapters/ There is a postgres.rb on my local drive. I'm using the free plan.

% heroku info
...
Dynos:          1
Workers:        0
Repo size:      9M
Slug size:      8M
Stack:          bamboo-mri-1.9.2
Data size:      (empty)
Addons:         Basic Logging, Shared Database 5MB


% heroku pg:info
=== kampanchi database SHARED_DATABASE_URL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

话少心凉 2024-11-16 22:49:14

Sequel 始终使用“postgres”作为 postgres 适配器。如果您已指定“postgresql”作为适配器方案,那么它应该不起作用。如果您使用Rails,Heroku 会创建一个ActiveRecord 格式的database.yml 文件(使用“postgresql”),我猜这就是您的rake 任务正在获取的内容。如果您使用的是 Rails/Sequel 集成工具,我猜它不会为您处理该转换,并且应该修复它。就个人而言,我会使用 Heroku 提供的 DATABASE_URL 环境变量手动设置数据库连接。

有关详细信息,请参阅 http://devcenter.heroku.com/articles/database#database_urls

Sequel has always used "postgres" for the postgres adapter. If you have specified "postgresql" as the adapter scheme, then it shouldn't work. If you are using Rails, Heroku creates a database.yml file in ActiveRecord format (using "postgresql"), and I'm guessing that's what your rake task is picking up. If you are using a Rails/Sequel integration tool, I'm guessing it isn't handling that conversion for you, and it should be fixed. Personally, I'd manually set up the database connection using the DATABASE_URL environment variable that Heroku provides.

See http://devcenter.heroku.com/articles/database#database_urls for details.

动听の歌 2024-11-16 22:49:14

为了补充 Jeremy 的回复,Heroku 始终在 DATABASE_URL 中使用“postgres”。如果您连接到 ENV["DATABASE_URL"],则无论您的数据库是什么,它都应该可以工作。

Just to supplement Jeremy's response, Heroku has always used "postgres" in the DATABASE_URL. If you connect to ENV["DATABASE_URL"], it should work regardless of what your database is.

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