sberezin
sberezin

Reputation: 3296

SQLite transactions for readonly operations

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

Answers (1)

CL.
CL.

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

Related Questions