File: doc.go

package info (click to toggle)
golang-github-zombiezen-go-sqlite 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 816 kB
  • sloc: makefile: 3
file content (31 lines) | stat: -rw-r--r-- 650 bytes parent folder | download
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