尝试使用以下信息设置Padrino Web框架以连接到我的本地PostgreSQL数据库:
数据库
List of databases
| Name | Owner
|------------------------|------------
| postgres | postgres
| template0 | postgres
| template1 | postgres
|trustmob_ui_development | postgres
|trustmob_ui_production | postgres
|trustmob_ui_test | postgres
(6 rows)
配置/ database.rb https://gist.github.com/1046031
ActiveRecord::Base.configurations[:development] = {
:adapter => 'postgresql',
:host => 'localhost',
:port => '5432',
:database => 'trustmob_ui_development',
:username => 'postgres',
:password => ''
}
当我尝试运行 padrino rake ar:migrate
时,出现以下错误。完整错误请点击此处:https://gist.github.com/1046044
rake aborted!
ActiveRecord::ConnectionNotEstablished
/usr/lib/ruby/gems/1.9.1/gems/activerecord-3.0.9/....
不确定我做错了什么。如何让Padrino查看/与数据库交谈?
〜丹
答案 0 :(得分:1)
你有没有在任何地方调用ActiveRecord :: Base.establish_connection?
答案 1 :(得分:0)
您可以使用代码连接Navicat或其他程序吗?
配置是否正确?通过postgresql.conf