SQLite3Stmt::busy

(PHP 8 >= 8.5.0)

SQLite3Stmt::busy — Returns 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.

Liste de paramĂštres

Cette fonction ne contient aucun paramĂštre.

Valeurs de retour

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

Historique

Version Description
8.5.0 This method was added.

Voir aussi

add a note

User Contributed Notes

There are no user contributed notes for this page.