<?php
$conn = new SQLite3(':memory:');
$conn->exec('CREATE TABLE test (id int)');
$conn->exec('INSERT INTO test VALUES (1)');
$statement= $conn->prepare('SELECT * FROM test');
$result = $statement->execute();
$statement->close();
$row = $result->fetchArray();
Fatal error: Uncaught Error: The SQLite3Result object has not been correctly initialised or is already closed in /in/AYuI3:9
Stack trace:
#0 /in/AYuI3(9): SQLite3Result->fetchArray()
#1 {main}
thrown in /in/AYuI3 on line 9
Process exited with code 255.