SQLite3Stmt::execute

(PHP 5 >= 5.3.0, PHP 7)

SQLite3Stmt::executeプリペアドステートメントを実行し、結果セットオブジェクトを返す

説明

public SQLite3Stmt::execute ( void ) : SQLite3Result

プリペアドステートメントを実行し、結果セットオブジェクトを返します。

警告

Result set objects retrieved by calling this method on the same statement object are not independent, but rather share the same underlying structure. Therefore it is recommended to call SQLite3Result::finalize(), before calling SQLite3Stmt::execute() on the same statement object again.

パラメータ

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

返り値

プリペアドステートメントの実行に成功した場合に SQLite3Result オブジェクト、 失敗した場合に FALSE を返します。