PHP Conference Ehime 2026

SQLite3Stmt::busy

(PHP 8 >= 8.5.0)

SQLite3Stmt::busyReturns whether the statement has been fetched but not yet completed

Description

public function SQLite3Stmt::busy(): bool

Returns whether the statement is busy, i.e. it has been started with SQLite3Stmt::execute() and has rows remaining to be fetched, but has not yet been completed or reset.

Parameters

This function has no parameters.

Return Values

Returns true if the statement has been executed and still has rows to fetch, false otherwise.

Changelog

Version Description
8.5.0 This method was added.

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top