Joomla CMS
2.5.24 (avec JPlatform 11.4 inclus)
Documentation des API du CMS Joomla en version 2.5 et du framework Joomla Platform intégré
|
Fonctions membres publiques | |
__toString () | |
castAsChar ($value) | |
charLength ($field) | |
concatenate ($values, $separator=null) | |
currentTimestamp () | |
length ($value) | |
processLimit ($query, $limit, $offset=0) | |
Fonctions membres publiques inherited from JDatabaseQuery | |
__call ($method, $args) | |
__construct (JDatabase $db=null) | |
__get ($name) | |
clear ($clause=null) | |
columns ($columns) | |
dateFormat () | |
dump () | |
delete ($table=null) | |
escape ($text, $extra=false) | |
from ($tables) | |
group ($columns) | |
having ($conditions, $glue= 'AND') | |
innerJoin ($condition) | |
insert ($table, $incrementField=false) | |
join ($type, $conditions) | |
leftJoin ($condition) | |
nullDate ($quoted=true) | |
order ($columns) | |
outerJoin ($condition) | |
quote ($text, $escape=true) | |
quoteName ($name) | |
rightJoin ($condition) | |
select ($columns) | |
set ($conditions, $glue= ',') | |
update ($table) | |
values ($values) | |
where ($conditions, $glue= 'AND') | |
__clone () | |
union ($query, $distinct=false, $glue= '') | |
unionDistinct ($query, $glue= '') |
Attributs protégés | |
$name_quotes = '`' | |
$null_date = '1900-01-01 00:00:00' | |
Attributs protégés inherited from JDatabaseQuery | |
$db = 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 | |
$union = null | |
$autoIncrementField = null |
JDatabaseQuerySQLSrv::__toString | ( | ) |
Magic function to convert the query to a string.
Réimplémentée à partir de JDatabaseQuery.
JDatabaseQuerySQLSrv::castAsChar | ( | $value | ) |
Casts a value to a char.
Ensure that the value is properly quoted before passing to the method.
string | $value | The value to cast as a char. |
Réimplémentée à partir de JDatabaseQuery.
JDatabaseQuerySQLSrv::charLength | ( | $field | ) |
Gets the function to determine the length of a character string.
string | $field | A value. |
Réimplémentée à partir de JDatabaseQuery.
Références $field.
JDatabaseQuerySQLSrv::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éimplémentée à partir de JDatabaseQuery.
Références $separator.
JDatabaseQuerySQLSrv::currentTimestamp | ( | ) |
Gets the current date and time.
Réimplémentée à partir de JDatabaseQuery.
JDatabaseQuerySQLSrv::length | ( | $value | ) |
Get the length of a string in bytes.
string | $value | The string to measure. |
Réimplémentée à partir de JDatabaseQuery.
JDatabaseQuerySQLSrv::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 |
|
protected |
Réimplémentée dans JDatabaseQuerySQLAzure.
|
protected |