import { Database } from "https://deno.land/x/sqlite3@0.12.0/mod.ts";
Creates a new user-defined function.
Example:
db.function("add", (a: number, b: number) => a + b);
db.prepare("select add(1, 2)").value<[number]>()!; // [3]
import { Database } from "https://deno.land/x/sqlite3@0.12.0/mod.ts";
Creates a new user-defined function.
Example:
db.function("add", (a: number, b: number) => a + b);
db.prepare("select add(1, 2)").value<[number]>()!; // [3]