使用光滑批量插入/删除?

时间:2015-07-20 21:02:20

标签: postgresql slick

我是Slick的新手,我想知道人们是否使用它来使用这个框架执行批量插入/删除,或者它只是用于查询而是推荐用于大批量操作的其他工具?

1 个答案:

答案 0 :(得分:0)

Slick can be used for batch insert and delete . You just build the seq with all of data you would like to insert and do db.run to do bulk insert . Similar applies for delete too .

Refer here for more information .