Expand description
Transaction operations for SQLite
This module provides functions for performing CRUD operations within a transaction.
Functions§
- begin
- Begins a new transaction.
- tx_
delete - Deletes a record from the database within a transaction.
- tx_
fetch - Fetches a single record from the database within a transaction.
- tx_
fetch_ all - Fetches multiple records from the database within a transaction.
- tx_get
Deprecated - Gets a single record from the database within a transaction.
- tx_
get_ all Deprecated - Gets multiple records from the database within a transaction.
- tx_
insert - Inserts a record into the database within a transaction.
- tx_
select - Execute a custom SELECT query within a transaction and transform the result.
- tx_
select_ all - Execute a custom SELECT query within a transaction and transform all results.
- tx_
update - Updates a record in the database within a transaction.