\JDatabaseQueryPreparable
Joomla Database Query Preparable Interface.
Adds bind/unbind methods as well as a getBounded() method
to retrieve the stored bounded variables on demand prior to
query execution.
Synopsis
interface JDatabaseQueryPreparable
{
- // methods
- public JDatabaseQuery bind()
- public mixed getBounded()
Methods
public
- bind() — Method to add a variable to an internal array that will be bound to a prepared SQL statement before query execution. Also removes a variable that has been bounded from the internal bounded array when the passed in value is null.
- getBounded() — Retrieves the bound parameters array when key is null and returns it by reference. If a key is provided then that item is returned.