method StatementSync.prototype.expandedSQL
Usage in Deno
import { StatementSync } from "node:sqlite";
StatementSync.prototype.expandedSQL(): string
This method returns the source SQL of the prepared statement with parameter
placeholders replaced by values. This method is a wrapper around sqlite3_expanded_sql()
.
string
The source SQL expanded to include parameter values.