Skip to main content
Module

x/sqlite/mod.ts>Status

Deno SQLite module
Go to Latest
enum Status
import { Status } from "https://deno.land/x/sqlite@v3.5.0/mod.ts";

Status codes which can be returned by SQLite.

Also see https://www.sqlite.org/rescode.html.

Members

SqliteAbort = 4
SqliteAuth = 23
SqliteBusy = 5
SqliteCantOpen = 14
SqliteConstraint = 19
SqliteCorrupt = 11
SqliteDone = 101
SqliteEmpty = 16
SqliteError = 1
SqliteFormat = 24
SqliteFull = 13
SqliteInternal = 2
SqliteInterrupt = 9
SqliteIOErr = 10
SqliteLocked = 6
SqliteMismatch = 20
SqliteMisuse = 21
SqliteNoLFS = 22
SqliteNoMem = 7
SqliteNotADB = 26
SqliteNotFound = 12
SqliteNotice = 27
SqliteOk = 0
SqlitePerm = 3
SqliteProtocol = 15
SqliteRange = 25
SqliteReadOnly = 8
SqliteRow = 100
SqliteSchema = 17
SqliteTooBig = 18
SqliteWarning = 28
Unknown