Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Very Popular
Latest
method Statement.prototype.bind
import { Statement } from "https://deno.land/x/libpkgx@v0.18.1/vendor/sqlite3@0.10.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.