NativeQuery.php 2.51 KB
Newer Older
romanb's avatar
romanb committed
1
<?php 
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.doctrine-project.org>.
 */
romanb's avatar
romanb committed
21

22
namespace Doctrine\ORM;
romanb's avatar
romanb committed
23 24

/**
25 26
 * Represents a native SQL query.
 *
27
 * @author Roman Borschel <roman@code-factory.org>
28
 * @since 2.0
romanb's avatar
romanb committed
29
 */
30
final class NativeQuery extends AbstractQuery
romanb's avatar
romanb committed
31 32
{
    private $_sql;
33 34 35 36 37

    /**
     * Initializes a new instance of the <tt>NativeQuery</tt> class that is bound
     * to the given EntityManager.
     *
38
     * @param EntityManager $em The EntityManager to use.
39 40
     */
    public function __construct(EntityManager $em)
romanb's avatar
romanb committed
41
    {
42
        parent::__construct($em);
romanb's avatar
romanb committed
43
    }
44 45 46 47 48

    /**
     * Sets the SQL of the query.
     *
     * @param string $sql
49
     * @return Doctrine\ORM\AbstractQuery
50 51
     */
    public function setSql($sql)
romanb's avatar
romanb committed
52
    {
53
        $this->_sql = $sql;
54
        return $this;
romanb's avatar
romanb committed
55
    }
56 57

    /**
58
     * Gets the SQL query.
59
     *
60
     * @return mixed The built SQL query or an array of all SQL queries.
61 62 63
     * @override
     */
    public function getSql()
romanb's avatar
romanb committed
64
    {
65
        return $this->_sql;
romanb's avatar
romanb committed
66
    }
67 68

    /**
69
     * Executes the query.
70 71
     *
     * @param array $params
72
     * @return Statement The Statement handle.
73 74 75
     * @override
     */
    protected function _doExecute(array $params)
romanb's avatar
romanb committed
76
    {
77
        return $this->_em->getConnection()->execute($this->_sql, $this->_prepareParams($params));
romanb's avatar
romanb committed
78
    }
romanb's avatar
romanb committed
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    
    /**
     * {@inheritdoc}
     * 
     * @override
     */
    protected function _prepareParams(array $params)
    {
        $sqlParams = array();
        
        foreach ($params as $key => $value) {
            $sqlParams[$key] = $value;
        }
        ksort($sqlParams);
        
        return array_values($sqlParams);
    }
romanb's avatar
romanb committed
96
}