Skip to main content
Module

x/sqlite3/mod.ts>BlobOpenOptions

Fastest & correct JavaScript bindings to SQLite3 C API, using Deno FFI.
Go to Latest
interface BlobOpenOptions
Re-export
import { type BlobOpenOptions } from "https://deno.land/x/sqlite3@0.5.3/mod.ts";

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

Properties

optional
readonly: boolean

Whether to open Blob in readonly mode. True by default.

optional
db: string

Database to open Blob from, "main" by default.

table: string

Table the Blob is in

column: string

Column name of the Blob Field

row: number

Row ID of which column to select