Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/libpkgx/vendor/sqlite3@0.10.0/mod.ts>Statement#bind

`import`… but with pkging powers
Very Popular
Latest
method Statement.prototype.bind
Re-export
import { Statement } from "https://deno.land/x/libpkgx@v0.18.1/vendor/sqlite3@0.10.0/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.