Joomla CMS  4.2.2
Documentation des API du CMS Joomla en version 4.2.2
Référence de l'interface LimitableInterface
+ Graphe d'héritage de LimitableInterface:

Fonctions membres publiques

 processLimit ($query, $limit, $offset=0)
 
 setLimit ($limit=0, $offset=0)
 

Description détaillée

Joomla Database Query LimitableInterface.

Depuis
1.0
Obsolète:
3.0 Capabilities will be required in Joomla

Documentation des fonctions membres

◆ processLimit()

processLimit (   $query,
  $limit,
  $offset = 0 
)

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.

Paramètres
string$queryThe query in string format
integer$limitThe limit for the result set
integer$offsetThe offset for the result set
Renvoie
string
Depuis
1.0

Implémenté dans SqlsrvQuery, et SqliteQuery.

Référencé par DatabaseQuery\__toString().

◆ setLimit()

setLimit (   $limit = 0,
  $offset = 0 
)

Sets the offset and limit for the result set, if the database driver supports it.

Usage: $query->setLimit(100, 0); (retrieve 100 rows, starting at first record) $query->setLimit(50, 50); (retrieve 50 rows, starting at 50th record)

Paramètres
integer$limitThe limit for the result set
integer$offsetThe offset for the result set
Renvoie
$this
Depuis
1.0

Implémenté dans DatabaseQuery.


La documentation de cette interface a été générée à partir du fichier suivant :