PHP Conference Ehime 2026

SQLite3Stmt::busy

(PHP 8 >= 8.5.0)

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

説明

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.

パラメータ

この関数にはパラメータはありません。

戻り値

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

変更履歴

バージョン 説明
8.5.0 This method was added.

参考

add a note

User Contributed Notes

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