QueryBuilder.php 4.96 KB
Newer Older
p0larbeer committed
1
<?php
Qiang Xue committed
2 3 4 5 6 7
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

p0larbeer committed
8 9 10
namespace yii\db\oci;

use yii\base\InvalidParamException;
11
use yii\db\Connection;
p0larbeer committed
12 13

/**
p0larbeer committed
14
 * QueryBuilder is the query builder for Oracle databases.
Qiang Xue committed
15
 *
16 17
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
p0larbeer committed
18
 */
p0larbeer committed
19 20
class QueryBuilder extends \yii\db\QueryBuilder
{
Carsten Brandt committed
21
    private $_sql;
22

Qiang Xue committed
23 24 25 26
    /**
     * @inheritdoc
     */
    public function build($query, $params = [])
27
    {
Qiang Xue committed
28 29
        $query->prepareBuild($this);

Qiang Xue committed
30 31
        $params = empty($params) ? $query->params : array_merge($params, $query->params);

32
        $clauses = [
Qiang Xue committed
33 34
            $this->buildSelect($query->select, $params, $query->distinct, $query->selectOption),
            $this->buildFrom($query->from, $params),
35 36 37 38 39 40
            $this->buildJoin($query->join, $params),
            $this->buildWhere($query->where, $params),
            $this->buildGroupBy($query->groupBy),
            $this->buildHaving($query->having, $params),
            $this->buildOrderBy($query->orderBy),
        ];
Carsten Brandt committed
41
        $this->_sql = implode($this->separator, array_filter($clauses));
42

Carsten Brandt committed
43
        $this->_sql = $this->buildLimit($query->limit, $query->offset);
44

45 46
        $union = $this->buildUnion($query->union, $params);
        if ($union !== '') {
Carsten Brandt committed
47
            $this->_sql = "{$this->_sql}{$this->separator}$union";
48 49
        }

Carsten Brandt committed
50
        return [$this->_sql, $params];
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    }

    public function buildLimit($limit, $offset)
    {
        $filters = [];
        if ($this->hasOffset($offset) > 0) {
            $filters[] = 'rowNumId > ' . $offset;
        }

        if ($this->hasLimit($limit)) {
            $filters[] = 'rownum <= ' . $limit;
        }

        if (!empty($filters)) {
            $filter = implode(' and ', $filters);

            return <<<EOD
Carsten Brandt committed
68
WITH USER_SQL AS ({$this->_sql}),
69
    PAGINATION AS (SELECT USER_SQL.*, rownum as rowNumId FROM USER_SQL)
p0larbeer committed
70 71
SELECT *
FROM PAGINATION
72
WHERE $filter
p0larbeer committed
73
EOD;
74
        } else {
Carsten Brandt committed
75
            return $this->_sql;
76 77 78 79 80 81
        }
    }

    /**
     * Builds a SQL statement for renaming a DB table.
     *
82 83
     * @param string $table the table to be renamed. The name will be properly quoted by the method.
     * @param string $newName the new table name. The name will be properly quoted by the method.
84 85 86 87 88 89 90 91 92 93
     * @return string the SQL statement for renaming a DB table.
     */
    public function renameTable($table, $newName)
    {
        return 'ALTER TABLE ' . $this->db->quoteTableName($table) . ' RENAME TO ' . $this->db->quoteTableName($newName);
    }

    /**
     * Builds a SQL statement for changing the definition of a column.
     *
94 95
     * @param string $table the table whose column is to be changed. The table name will be properly quoted by the method.
     * @param string $column the name of the column to be changed. The name will be properly quoted by the method.
96
     * @param string $type the new column type. The [[getColumnType]] method will be invoked to convert abstract column type (if any)
97 98
     * into the physical one. Anything that is not recognized as abstract type will be kept in the generated SQL.
     * For example, 'string' will be turned into 'varchar(255)', while 'string not null' will become 'varchar(255) not null'.
99 100 101 102 103 104 105 106 107 108 109 110
     * @return string the SQL statement for changing the definition of a column.
     */
    public function alterColumn($table, $column, $type)
    {
        $type = $this->getColumnType($type);

        return 'ALTER TABLE ' . $this->db->quoteTableName($table) . ' MODIFY ' . $this->db->quoteColumnName($column) . ' ' . $this->getColumnType($type);
    }

    /**
     * Builds a SQL statement for dropping an index.
     *
111 112
     * @param string $name the name of the index to be dropped. The name will be properly quoted by the method.
     * @param string $table the table whose index is to be dropped. The name will be properly quoted by the method.
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
     * @return string the SQL statement for dropping an index.
     */
    public function dropIndex($name, $table)
    {
        return 'DROP INDEX ' . $this->db->quoteTableName($name);
    }

    /**
     * @inheritdoc
     */
    public function resetSequence($table, $value = null)
    {
        $tableSchema = $this->db->getTableSchema($table);
        if ($tableSchema === null) {
            throw new InvalidParamException("Unknown table: $table");
        }
        if ($tableSchema->sequenceName === null) {
            return '';
        }

        if ($value !== null) {
            $value = (int) $value;
        } else {
Qiang Xue committed
136
            // use master connection to get the biggest PK value
137 138 139
            $value = $this->db->useMaster(function (Connection $db) use ($tableSchema) {
                return $db->createCommand("SELECT MAX(\"{$tableSchema->primaryKey}\") FROM \"{$tableSchema->name}\"")->queryScalar();
            }) + 1;
140 141 142 143 144
        }

        return "DROP SEQUENCE \"{$tableSchema->name}_SEQ\";"
            . "CREATE SEQUENCE \"{$tableSchema->name}_SEQ\" START WITH {$value} INCREMENT BY 1 NOMAXVALUE NOCACHE";
    }
p0larbeer committed
145
}