SQLite3Stmt::getSQL
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
SQLite3Stmt::getSQL
Референца за `sqlite3stmt.getsql.php` со подобрена типографија и навигација.
SQLite3Stmt::getSQL
(PHP 7 >= 7.4.0, PHP 8)
SQLite3Stmt::getSQL — Get the SQL of the statement
= NULL
Retrieves the SQL of the prepared statement. If expand
is false, the unmodified SQL is retrieved. If expand
is true, all query parameters are replaced with their bound values, or with an SQL NULL, if not already bound.
Параметри
expand-
Whether to retrieve the expanded SQL. Passing
trueis only supported as of libsqlite 3.14.
Вратени вредности
Returns the SQL of the prepared statement, or false при неуспех.
Errors/Exceptions
Враќа expand is true, but the libsqlite version is less than 3.14, an error of level E_WARNING или Исклучок
is issued, according to SQLite3::enableExceptions().
Примери
Example #1 Inspecting the expanded SQL
<?php
$db = new SQLite3(':memory:');
$stmt = $db->prepare("SELECT :a, ?, :c");
$stmt->bindValue(':a', 'foo');
$answer = 42;
$stmt->bindParam(2, $answer);
var_dump($stmt->getSQL(true));
?>Горниот пример ќе прикаже нешто слично на:
string(24) "SELECT 'foo', '42', NULL"