1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
// Copyright 2023 Roxy Light
// SPDX-License-Identifier: ISC
/*
Package sqlitex provides utilities for working with SQLite.
# Statements
To execute a statement from a string,
pass an [ExecOptions] struct to one of the following functions:
- [Execute]
- [ExecuteScript]
- [ExecuteTransient]
To execute a statement from a file (typically using [embed]),
pass an [ExecOptions] struct to one of the following functions:
- [ExecuteFS]
- [ExecuteScriptFS]
- [ExecuteTransientFS]
- [PrepareTransientFS]
# Transactions and Savepoints
- [Save]
- [Transaction]
- [ExclusiveTransaction]
- [ImmediateTransaction]
*/
package sqlitex
|