1

我将整数数组保存到 PostgreSQL 表中,当尝试检索它时,我总是得到 []uint8 而不是 []int。我尝试使用 []integer、[]bigint、[]smallint。没有任何效果。该数组最多表示四个项目,每个项目在 1-100 之间,没有浮点数。

我正在使用 Go,并且我有一个 []int 对象,这是字段:

Quantity []int `json:"quantity" db:"quantity"`

我正在尝试修复它,但找不到让 PostgreSQL 返回 []int 的方法。

所有其他表字段都工作得很好。该Quantity字段的类型integer[]

这是插入查询:

"INSERT INTO products (product_id, name, manufacturer, image_url, quantity, amount, notes, store_id, store_name, owner_id) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)", newProduct.UID, newProduct.Name, newProduct.Manufacturer, newProduct.Image, pq.Array(newProduct.Quantity), newProduct.Amount, newProduct.Notes, newProduct.StoreID, newProduct.StoreName, newProduct.OwnerID);

这就是我尝试获取数据的方式。

err := rows.Scan(&temp.ID, &temp.UID, &temp.Name, &temp.Manufacturer,
        &temp.Image, &temp.Amount, &temp.Notes,
        &temp.StoreID, &temp.OwnerID, &temp.StoreName, &temp.Quantity)

问题仅在于数量。如果我改变我temp object[]uint8而不是[]int我得到字节。

4

1 回答 1

5

Use pq.Array(&temp.Quantity)

The way you store, you have to retrieve also that way.

err := rows.Scan(&temp.ID, &temp.UID, &temp.Name, &temp.Manufacturer,
        &temp.Image, &temp.Amount, &temp.Notes,
        &temp.StoreID, &temp.OwnerID, &temp.StoreName, pq.Array(&temp.Quantity))

And you have to use supported types for pq.Array() also or implement Scanner interface. For integer you can use []sql.NullInt64 or []int64. But it's better to use the same supported type for Scanner and Valuer interface.

Find more details here.

于 2020-04-19T18:32:42.600 回答