\JDatabaseQueryLimitable
Joomla Database Query Limitable 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 JDatabaseQueryLimitable
{
- // methods
- public string processLimit()
- public JDatabaseQuery setLimit()
Methods
public
- processLimit() — Method to modify a query already in string format with the needed additions to make the query limited to a particular number of results, or start at a particular offset. This method is used automatically by the __toString() method if it detects that the query implements the JDatabaseQueryLimitable interface.
- setLimit() — Sets the offset and limit for the result set, if the database driver supports it.