3

我正在使用带有 rails 3.2 的 activerecord-postgres-hstore gem。我已经设置了 hstore,当我尝试保存任何数据时,我得到了错误:

ActiveRecord::StatementInvalid in ProductsController#create

PG::Error: ERROR:  Syntax error near 'a' at position 4
: INSERT INTO "products" ("created_at", "name", "price", "properties", "updated_at")      
VALUES ($1, $2, $3, $4, $5) RETURNING "id"

在这种情况下,我将“属性”定义为 hstore 数据类型。我在 postgresl 8.4 和 9.1 都看到了这个错误。任何信息表示赞赏。

4

1 回答 1

4

从Rails 3.2 Postgres Save Error "ActiveRecord::StatementInvalid: PG::Error: ERROR: Syntax error near 'T' at position 5"添加代码“ serialize :data, ActiveRecord::Coders::Hstore ”解决了我的问题。当我最初尝试将此作为修复时,我只是有错误的型号名称。

于 2012-07-12T13:59:53.893 回答