Skip to main content
Module

x/sqlite3/mod.ts

Fast, native bindings to SQLite3 C API, using Deno FFI.
Go to Latest
import * as sqlite3 from "https://deno.land/x/sqlite3@0.4.3/mod.ts";

Classes

Represents a SQLite3 database connection.

Represents a prepared statement. Should only be created by Database.prepare().

Represents the current Row in a Prepared Statement. Should not be created directly. Use PreparedStatement.row or Row returned by PreparedStatement.step() instead.

Enumerates SQLite3 Blob opened for streamed I/O.

Enums

SQLite 3 value types.

Variables

SQLite source ID string

SQLite version string

Functions

Whether the given SQL statement is complete.

Interfaces

Various options that can be configured when opening a Blob via Database#openBlob.

Various options that can be configured when opening Database connection.

Type Aliases

Types that can be possibly serialized as SQLite bind values

Types that can be possibly deserialized from SQLite Column