Skip to main content
Module

x/sqlite/mod.ts>DB#close

Deno SQLite module
Go to Latest
method DB.prototype.close
import { DB } from "https://deno.land/x/sqlite@v3.4.1/mod.ts";

Close the database. This must be called if the database is no longer used to avoid leaking open file descriptors.

If force is specified, any active PreparedQuery will be finalized. Otherwise, this throws if there are active queries.

close may safely be called multiple times.

Parameters

optional
force = [UNSUPPORTED]