Module transactional_ops

Source
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_getDeprecated
Gets a single record from the database within a transaction.
tx_get_allDeprecated
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.