5

如何ids在 Peewee 中批量插入?

我需要返回插入的 id 来创建一个新的 dict 数组,如下所示:

a = [{"product_id": "inserted_id_1", "name": "name1"}, {"product_id": "inserted_id_2", "name": "name1"}]

然后我需要使用批量插入它,例如:

ids = query.insertBulk(a)

反过来,最后一个查询应该返回我新的 id 以进行进一步的类似插入。

4

1 回答 1

4

如果您使用支持“INSERT ... RETURNING”形式的查询的 Postgresql,您可以获得所有 ID:

data = [{'product_id': 'foo', 'name': 'name1'}, {...}, ...]
id_list = SomeModel.insert_many(data).execute()

对于不支持 RETURNING 子句的 SQLite 或 MySQL,您最好这样做:

with db.atomic() as txn:
    accum = []
    for row in data:
        accum.append(SomeModel.insert(row).execute())
于 2018-02-19T15:01:38.987 回答