JDatabaseQuery: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 2: | Line 2: | ||
=={{JVer|11.1}} JDatabaseQuery== | =={{JVer|11.1}} JDatabaseQuery== | ||
===Description=== | ===Description=== | ||
===Methods=== | ===Methods=== | ||
| Line 148: | Line 148: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage Database|Database]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage Database|Database]] | ||
* [[API17:JDatabaseQuery|Other versions of JDatabaseQuery]] | * [[API17:JDatabaseQuery|Other versions of JDatabaseQuery]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JDatabaseQuery | category=JDatabaseQuery | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
Latest revision as of 02:42, 25 March 2017
JDatabaseQuery
Description
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | __toString | Magic function to convert the query to a string. |
| public | auto_increment | |
| public | castToChar | |
| public | charLength | |
| public | clear | Clear data from the query or a specific clause of the query. |
| public | concat | |
| public | delete | |
| public | dropIfExists | |
| public | fields | |
| public | from | |
| public | group | |
| public | having | |
| public | innerJoin | |
| public | insert | |
| public | insertInto | |
| public | join | |
| public | leftJoin | |
| public | length | |
| public | lock | Method to lock the database table for writing. |
| public | now | |
| public | order | |
| public | outerJoin | |
| public | renameTable | |
| public | rightJoin | |
| public | select | |
| public | set | |
| public | showTables | |
| public | unlock | Method to unlock the database table for writing. |
| public | update | |
| public | values | |
| public | where |
- Defined in libraries/joomla/database/databasequery.php
- Extended by
Importing
jimport( 'joomla.database.databasequery' );
See also
JDatabaseQuery source code on BitBucket
Subpackage Database- Other versions of JDatabaseQuery
User contributed notes
Code Examples