CakeFest 2024: The Official CakePHP Conference

SQLite3Stmt::clear

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3Stmt::clearClears all current bound parameters

Beschreibung

public SQLite3Stmt::clear(): bool

Clears all current bound parameters (sets them to null).

Achtung

This method needs to be used with SQLite3Stmt::reset(). If used alone, any call to SQLite3Stmt::bindValue() or SQLite3Stmt::bindParam() will be of no effect and all bound parameters will have the null value.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns true on successful clearing of bound parameters, false on failure.

add a note

User Contributed Notes

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