Module transactional_ops

Source
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.