Skip to main content
Module

x/sqlite/browser/mod.ts

Deno SQLite module
Go to Latest
import * as sqlite from "https://deno.land/x/sqlite@v3.7.2/browser/mod.ts";

Classes

Errors which can occur while interacting with a database.

Enums

Status codes which can be returned by SQLite.

Functions

Opens a database with the given name. If file is not provided or :memory:, an in-memory database is returned which will not persist after the database is closed.

Read the data currently stored for a given file. This can be used to export a database which has been created or modified.

Overwrite a given file with arbitrary data. This can be used to import a database which can later be opened.