(PHP 7 >= 7.4.0)
SQLite3Stmt::getSQL — Get the SQL of the statement
public SQLite3Stmt::getSQL ([ bool $expanded = false ] ) : string|false
Retrieves the SQL of the prepared statement. If expanded
is false
, the unmodified SQL is retrieved. If expanded
is true
, all query parameters are replaced with their bound values, or with an SQL NULL
, if not already bound.
expanded
Whether to retrieve the expanded SQL. Passing true
is only supported as of libsqlite 3.14.
Returns the SQL of the prepared statement, or false
on failure.
If expanded
is true
, but the libsqlite version is less than 3.14, an error of level E_WARNING
or an Exception is issued, according to SQLite3::enableExceptions().
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/sqlite3stmt.getsql.php