作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我对 hood
的文档有一些疑问,没有解释 config.json
中应该包含什么。我试过:
{
"development": {
"driver": "postgres",
"source": "my_development"
}
}
但我有错误:
hood db:migrate
2014/06/23 12:53:14 applying migrations...
panic: missing "=" after "my_development" in connection info string"
最佳答案
来自hood文档:
The driver and source fields are the strings you would pass to the sql.Open(2) function.
所以 driver
的值应该是 postgresql
(对于你的例子),而 source
的值应该是 的列表key=value
或完整连接 URI(如 postgresql documentation 中所述)。
一些示例(来自 here):
postgres://pqgotest:password@localhost/pqgotest?sslmode=verify-full
user=pqgotest dbname=pqgotest sslmode=verify-full
关于postgresql - 引擎盖 "config.json"值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24362362/
我对 hood 的文档有一些疑问,没有解释 config.json 中应该包含什么。我试过: { "development": { "driver": "postgres", "s
我是一名优秀的程序员,十分优秀!