Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Usage

import * as denoSqlitePlugin from "https://raw.githubusercontent.com/crabmusket/deno_sqlite_plugin/master/src/mod.ts";

§Classes

Connection

Represents an open database.

Sqlite

This class is intended to be a holder for configuration. At the moment though, there is no configuration! It's just a factory for Connections.

§Type Aliases

Blob

Raw ArrayBuffers are used to transfer binary data. For example, if you have a typed array like a Uint8Array, you can use theArray.buffer to get its raw data for insertion into SQLite.

Value

SQLite knows only a few native types, represented here. All other types (dates, booleans, etc.) must be encoded as one of these types. https://www.sqlite.org/datatype3.html

Values