import * as denoSqlitePlugin from "https://raw.githubusercontent.com/crabmusket/deno_sqlite_plugin/master/src/mod.ts";
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. |
Blob | Raw ArrayBuffers are used to transfer binary data. For example, if you have
a typed array like a Uint8Array, you can use |
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 |