![]() |
Joomla CMS
3.9.25 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.9.25 et du framework Joomla Platform intégré
|
Graphe d'héritage de FOFDatabaseQueryMysqli:Fonctions membres publiques | |
| processLimit ($query, $limit, $offset=0) | |
| concatenate ($values, $separator=null) | |
| setLimit ($limit=0, $offset=0) | |
| regexp ($value) | |
| Rand () | |
Fonctions membres publiques hérités de FOFDatabaseQuery | |
| __call ($method, $args) | |
| __construct (FOFDatabaseDriver $db=null) | |
| __toString () | |
| __get ($name) | |
| call ($columns) | |
| castAsChar ($value) | |
| charLength ($field, $operator=null, $condition=null) | |
| clear ($clause=null) | |
| columns ($columns) | |
| concatenate ($values, $separator=null) | |
| currentTimestamp () | |
| dateFormat () | |
| dump () | |
| delete ($table=null) | |
| escape ($text, $extra=false) | |
| exec ($columns) | |
| from ($tables, $subQueryAlias=null) | |
| year ($date) | |
| month ($date) | |
| day ($date) | |
| hour ($date) | |
| minute ($date) | |
| second ($date) | |
| group ($columns) | |
| having ($conditions, $glue='AND') | |
| innerJoin ($condition) | |
| insert ($table, $incrementField=false) | |
| join ($type, $conditions) | |
| leftJoin ($condition) | |
| length ($value) | |
| nullDate ($quoted=true) | |
| order ($columns) | |
| outerJoin ($condition) | |
| quote ($text, $escape=true) | |
| quoteName ($name, $as=null) | |
| rightJoin ($condition) | |
| select ($columns) | |
| set ($conditions, $glue=',') | |
| setQuery ($sql) | |
| update ($table) | |
| values ($values) | |
| where ($conditions, $glue='AND') | |
| __clone () | |
| union ($query, $distinct=false, $glue='') | |
| unionDistinct ($query, $glue='') | |
| format ($format) | |
| dateAdd ($date, $interval, $datePart) | |
| unionAll ($query, $distinct=false, $glue='') | |
Attributs protégés | |
| $offset | |
| $limit | |
Attributs protégés hérités de FOFDatabaseQuery | |
| $db = null | |
| $sql = null | |
| $type = '' | |
| $element = null | |
| $select = null | |
| $delete = null | |
| $update = null | |
| $insert = null | |
| $from = null | |
| $join = null | |
| $set = null | |
| $where = null | |
| $group = null | |
| $having = null | |
| $columns = null | |
| $values = null | |
| $order = null | |
| $autoIncrementField = null | |
| $call = null | |
| $exec = null | |
| $union = null | |
| $unionAll = null | |
Query Building Class.
| concatenate | ( | $values, | |
$separator = null |
|||
| ) |
Concatenates an array of column names or values.
| array | $values | An array of values to concatenate. |
| string | $separator | As separator to place between each value. |
Références $separator, et $value.
| 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.
| string | $query | The query in string format |
| integer | $limit | The limit for the result set |
| integer | $offset | The offset for the result set |
Implémente JDatabaseQueryLimitable.
| Rand | ( | ) |
Return correct rand() function for Mysql.
Ensure that the rand() function is Mysql compatible.
Usage: $query->Rand();
| regexp | ( | $value | ) |
Return correct regexp operator for mysqli.
Ensure that the regexp operator is mysqli compatible.
Usage: $query->where('field ' . $query->regexp($search));
| string | $value | The regex pattern. |
Références $value.
| 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)
| integer | $limit | The limit for the result set |
| integer | $offset | The offset for the result set |
Implémente JDatabaseQueryLimitable.
|
protected |
|
protected |