import { type DatabaseOpenOptions } from "https://deno.land/x/libpkgx@v0.20.0/vendor/sqlite3@0.10.0/src/database.ts";
Various options that can be configured when opening Database connection.
Properties
Whether to open database only in read-only mode. By default, this is false.
Whether to create a new database file at specified path if one does not exist already. By default this is true.
Whether to support BigInt columns. False by default, integers larger than 32 bit will be inaccurate.
Apply agressive optimizations that are not possible with concurrent clients.