Skip to main content
Module

x/sqlite3/mod.ts>Statement#bind

Fastest & correct JavaScript bindings to SQLite3 C API, using Deno FFI.
Go to Latest
method Statement.prototype.bind
Re-export
import { Statement } from "https://deno.land/x/sqlite3@0.5.1/mod.ts";

Bind parameters to the statement. This method can only be called once to set the parameters to be same throughout the statement. You cannot change the parameters after this method is called.

This method is merely just for optimization to avoid binding parameters each time in prepared statement.