jhamiltonsitepro

Results 2 comments of jhamiltonsitepro

> You could perform the bulk insert in a transaction and use `SELECT last_insert_rowid()` to figure out the rowids. > > If your primary key is `AUTOINCREMENT` so that rowids...

@kuhnroyal and others, I decided to create a small example here in this issue for posterity, and to help future searchers: ```dart Future bulkInsertAndReturnIds(List companions) async { final lastRowId =...