PHP Velho Oeste 2024

SQLite3Result::finalize

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3Result::finalizeCloses the result set

Description

public SQLite3Result::finalize(): bool

Closes the result set.

Parameters

This function has no parameters.

Return Values

Returns true.

add a note add a note

User Contributed Notes 1 note

up
-2
Anonymous
7 years ago
A simple example using finalize().

// Open the database connection
$db = new SQLite3('database.db');

// Prepare a query for execution
$query = $db->prepare('SELECT user_id FROM users WHERE username=:username');
$query->bindValue(':username', $_COOKIE['username'], SQLITE3_TEXT);

// Execute the query
$result = $query->execute();

// Store the result of the query
$id = $result->fetchArray(SQLITE3_NUM)[0];

// Close the result set and database connection
$result->finalize();
$db->close();

Of course you should be more careful and clean your cookie, etc.
To Top