Skip to main content
Module

x/sqlite3/src/statement.ts>Statement#bind

The fastest and correct SQLite3 module for Deno runtime
Latest
method Statement.prototype.bind
import { Statement } from "https://deno.land/x/sqlite3@0.12.0/src/statement.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.