NativeQuery.php 2.45 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 49 50

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

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

    /**
67
     * Executes the query.
68 69
     *
     * @param array $params
70
     * @return Statement The Statement handle.
71 72 73
     * @override
     */
    protected function _doExecute(array $params)
romanb's avatar
romanb committed
74
    {
75
        return $this->_em->getConnection()->execute($this->_sql, $this->_prepareParams($params));
romanb's avatar
romanb committed
76
    }
romanb's avatar
romanb committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    
    /**
     * {@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
94
}