Reputation: 3296
Sorry if this is not a clever question:
Do SQLite transactions have any sense for series of read-only operations? Why?
Upvotes: 0
Views: 172
Reputation: 180192
Transactions are atomic. This means that multiple queries inside a transaction return consistent data, i.e., nobody else change change the data you see.
Upvotes: 1