0 votes
in Sql by

Which of the following statements is true about SQLite transactions?

a) A transaction is a sequence of database operations that are treated as a single unit of work.

b) SQLite supports both implicit and explicit transactions.

c) An implicit transaction is started automatically by SQLite for each database operation.

d) All of the above.

1 Answer

0 votes
by

Answer: a) A transaction is a sequence of database operations that are treated as a single unit of work.

Explanation: A transaction is a sequence of database operations that are treated as a single unit of work. SQLite supports both implicit and explicit transactions, and an implicit transaction is started automatically by SQLite for each database operation.

...