Open
Description
It would be greatly appreciated if we could get a Transaction object that could be obtained by doing db.writeTransaction() so we could gradually build a transaction and do transaction.commit when done.
Example:
var db = SqliteDatabase(path: "mydb");
var tx = await db.writeTransaction();
var id = await tx.execute("INSERT ...", params);
var id2 = await tx.execute("INSERT ..." params);
// ...
await tx.commit();
Thank you
Metadata
Metadata
Assignees
Labels
No labels