Class QueryBuilder
Connection wrapper for Doctrine DBAL Connection
PHP version 5.3
- Doctrine\DBAL\Query\QueryBuilder
- Xoops\Core\Database\QueryBuilder
Namespace: Xoops\Core\Database
Package: QueryBuilder
Category: Xoops\Core\Database\QueryBuilder
Copyright: 2013-2015 XOOPS Project (http://xoops.org)
License: GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
Author: readheadedrod redheadedrod@hotmail.com
Author: Richard Griffith richard@geekwright.com
Version: Release: 2.6.0
Since: 2.6.0
Link: http://xoops.org
Located at oops_lib/Xoops/Core/Database/QueryBuilder.php
Package: QueryBuilder
Category: Xoops\Core\Database\QueryBuilder
Copyright: 2013-2015 XOOPS Project (http://xoops.org)
License: GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
Author: readheadedrod redheadedrod@hotmail.com
Author: Richard Griffith richard@geekwright.com
Version: Release: 2.6.0
Since: 2.6.0
Link: http://xoops.org
Located at oops_lib/Xoops/Core/Database/QueryBuilder.php
public
|
#
deletePrefix( string $delete = null, string $alias = null )
Turns the query being built into a bulk delete query that ranges over a certain table. |
public
|
#
updatePrefix( string $update = null, string $alias = null )
Turns the query being built into a bulk update query that ranges over a certain table |
public
|
#
insertPrefix( string $insert = null )
Turns the query being built into an insert query that inserts into a certain table |
public
|
#
fromPrefix( string $from, string|null $alias = null )
Create and add a query root corresponding to the table identified by the given alias, forming a cartesian product with any existing query roots. |
public
|
#
joinPrefix( string $fromAlias, string $join, string $alias, string $condition = null )
Creates and adds a join to the query. |
public
|
#
innerJoinPrefix( string $fromAlias, string $join, string $alias, string $condition = null )
Creates and adds a join to the query. |
public
|
#
leftJoinPrefix( string $fromAlias, string $join, string $alias, string $condition = null )
Creates and adds a left join to the query. |
public
|
#
rightJoinPrefix( string $fromAlias, string $join, string $alias, string $condition = null )
Creates and adds a right join to the query. |