Expand description
Transaction operations for SQLite
This module provides functions for performing CRUD operations within a transaction.
Functions§
- begin
- Begin a new transaction.
- tx_
delete - Delete a record within a transaction.
- tx_get
- Get a single record within a transaction.
- tx_
get_ all - Get multiple records within a transaction.
- tx_
insert - Insert a record 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 - Update a record within a transaction.