Sequel是一款优秀的Ruby ORM,是ActiveRecord的有效替代品。它有很好的记录和功能。但它仍然有一些棘手的问题。您发现哪些提示更容易使用Sequel?
答案 0 :(得分:2)
如果您来自Rails,请注意续集中使用的连接选项键和值拼写与database.yml
中的拼写不同:
db_config {
:adapter => 'postgres', # NOT 'postgresql'
:default_schema => 'public', # NOT :schema_search_path
:user => 'myusername', # NOT :username
:password => 'mypassword',
:host => 'myhost',
:database => 'mydb',
:max_connections => 5 # NOT :pool'
}
DB = Sequel.connect db_config