Connection.php 22.4 KB
Newer Older
1
<?php
romanb's avatar
romanb committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  $Id: Connection.php 4933 2008-09-12 10:58:33Z romanb $
 *
 * 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
19
 * <http://www.doctrine-project.org>.
romanb's avatar
romanb committed
20 21
 */

22
namespace Doctrine\DBAL;
romanb's avatar
romanb committed
23

24 25
use Doctrine\Common\EventManager;
use Doctrine\Common\DoctrineException;
26 27

/**
28
 * A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
29 30
 * events, transaction isolation levels, configuration, emulated transaction nesting,
 * lazy connecting and more.
31
 *
romanb's avatar
romanb committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @since       1.0
 * @version     $Revision: 4933 $
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @author      Lukas Smith <smith@pooteeweet.org> (MDB2 library)
 * @author      Roman Borschel <roman@code-factory.org>
 * @todo
 * 1) REPLICATION SUPPORT
 * Replication support should be tackled at this layer (DBAL).
 * There can be options that look like:
 *       'slaves' => array(
 *           'slave1' => array(
 *                user, pass etc.
 *           ),
 *           'slave2' => array(
 *                user, pass etc.
 *           )),
 *       'slaveConnectionResolver' => new MySlaveConnectionResolver(),
 *       'masters' => array(...),
 *       'masterConnectionResolver' => new MyMasterConnectionResolver()
52
 *
53
 * Doctrine\DBAL could ship with a simple standard broker that uses a primitive
romanb's avatar
romanb committed
54
 * round-robin approach to distribution. User can provide its own brokers.
55
 */
56
class Connection
57
{
romanb's avatar
romanb committed
58 59 60 61 62 63 64 65
    /**
     * Constant for transaction isolation level READ UNCOMMITTED.
     */
    const TRANSACTION_READ_UNCOMMITTED = 1;
    /**
     * Constant for transaction isolation level READ COMMITTED.
     */
    const TRANSACTION_READ_COMMITTED = 2;
romanb's avatar
romanb committed
66 67 68 69 70 71 72 73
    /**
     * Constant for transaction isolation level REPEATABLE READ.
     */
    const TRANSACTION_REPEATABLE_READ = 3;
    /**
     * Constant for transaction isolation level SERIALIZABLE.
     */
    const TRANSACTION_SERIALIZABLE = 4;
74

75 76 77 78 79 80 81 82 83
    /**
     * Derived PDO constants
     */
    const FETCH_ASSOC       = 2;
    const FETCH_BOTH        = 4;
    const FETCH_COLUMN      = 7;
    const FETCH_NUM         = 3;
    const ATTR_AUTOCOMMIT   = 0;

romanb's avatar
romanb committed
84 85 86 87 88 89
    /**
     * The wrapped driver connection.
     *
     * @var Doctrine\DBAL\Driver\Connection
     */
    protected $_conn;
90

romanb's avatar
romanb committed
91 92 93 94 95 96
    /**
     * The Configuration.
     *
     * @var Doctrine\DBAL\Configuration
     */
    protected $_config;
97

romanb's avatar
romanb committed
98 99 100 101 102 103
    /**
     * The EventManager.
     *
     * @var Doctrine\Common\EventManager
     */
    protected $_eventManager;
104

romanb's avatar
romanb committed
105 106 107 108 109 110
    /**
     * Whether or not a connection has been established.
     *
     * @var boolean
     */
    protected $_isConnected = false;
111

romanb's avatar
romanb committed
112 113 114 115 116 117
    /**
     * The transaction nesting level.
     *
     * @var integer
     */
    protected $_transactionNestingLevel = 0;
romanb's avatar
romanb committed
118

romanb's avatar
romanb committed
119 120 121 122 123 124
    /**
     * The currently active transaction isolation level.
     *
     * @var integer
     */
    protected $_transactionIsolationLevel;
125

romanb's avatar
romanb committed
126 127 128 129 130 131
    /**
     * The parameters used during creation of the Connection instance.
     *
     * @var array
     */
    protected $_params = array();
132

romanb's avatar
romanb committed
133 134 135 136 137 138
    /**
     * The query count. Represents the number of executed database queries by the connection.
     *
     * @var integer
     */
    protected $_queryCount = 0;
139

romanb's avatar
romanb committed
140 141 142 143 144 145 146
    /**
     * The DatabasePlatform object that provides information about the
     * database platform used by the connection.
     *
     * @var Doctrine\DBAL\Platforms\AbstractPlatform
     */
    protected $_platform;
147

romanb's avatar
romanb committed
148 149 150 151 152 153
    /**
     * The schema manager.
     *
     * @var Doctrine\DBAL\Schema\SchemaManager
     */
    protected $_schemaManager;
154

romanb's avatar
romanb committed
155
    /**
romanb's avatar
romanb committed
156 157 158 159 160
     * The used DBAL driver.
     *
     * @var Doctrine\DBAL\Driver
     */
    protected $_driver;
161

romanb's avatar
romanb committed
162 163 164 165 166 167 168 169 170 171 172 173 174
    /**
     * Initializes a new instance of the Connection class.
     *
     * @param array $params  The connection parameters.
     * @param Driver $driver
     * @param Configuration $config
     * @param EventManager $eventManager
     */
    public function __construct(array $params, Driver $driver, Configuration $config = null,
            EventManager $eventManager = null)
    {
        $this->_driver = $driver;
        $this->_params = $params;
175

romanb's avatar
romanb committed
176 177 178 179
        if (isset($params['pdo'])) {
            $this->_conn = $params['pdo'];
            $this->_isConnected = true;
        }
180

romanb's avatar
romanb committed
181 182 183
        // Create default config and event manager if none given
        if ( ! $config) {
            $config = new Configuration();
romanb's avatar
romanb committed
184 185
        }
        if ( ! $eventManager) {
romanb's avatar
romanb committed
186
            $eventManager = new EventManager();
romanb's avatar
romanb committed
187
        }
188

romanb's avatar
romanb committed
189
        $this->_config = $config;
romanb's avatar
romanb committed
190 191 192
        $this->_eventManager = $eventManager;
        $this->_platform = $driver->getDatabasePlatform();
        $this->_transactionIsolationLevel = $this->_platform->getDefaultTransactionIsolationLevel();
romanb's avatar
romanb committed
193
    }
romanb's avatar
romanb committed
194

195
    /**
romanb's avatar
romanb committed
196
     * Gets the parameters used during instantiation.
197 198 199 200 201 202 203 204
     *
     * @return array $params
     */
    public function getParams()
    {
        return $this->_params;
    }

romanb's avatar
romanb committed
205
    /**
romanb's avatar
romanb committed
206
     * Gets the name of the database this Connection is connected to.
romanb's avatar
romanb committed
207 208 209 210 211 212 213
     *
     * @return string $database
     */
    public function getDatabase()
    {
        return $this->_driver->getDatabase($this);
    }
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
    
    /**
     * Gets the hostname of the currently connected database.
     * 
     * @return string
     */
    public function getHost()
    {
        return $this->_params['host'];
    }
    
    /**
     * Gets the port of the currently connected database.
     * 
     * @return mixed
     */
    public function getPort()
    {
        return $this->_params['port'];
    }
    
    /**
     * Gets the username used by this connection.
     * 
     * @return string
     */
    public function getUsername()
    {
        return $this->_params['user'];
    }
    
    /**
     * Gets the password used by this connection.
     * 
     * @return string
     */
    public function getPassword()
    {
        return $this->_params['password'];
    }
romanb's avatar
romanb committed
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304

    /**
     * Gets the DBAL driver instance.
     *
     * @return Doctrine\DBAL\Driver
     */
    public function getDriver()
    {
        return $this->_driver;
    }

    /**
     * Gets the Configuration used by the Connection.
     *
     * @return Doctrine\DBAL\Configuration
     */
    public function getConfiguration()
    {
        return $this->_config;
    }

    /**
     * Gets the EventManager used by the Connection.
     *
     * @return Doctrine\Common\EventManager
     */
    public function getEventManager()
    {
        return $this->_eventManager;
    }

    /**
     * Gets the DatabasePlatform for the connection.
     *
     * @return Doctrine\DBAL\Platforms\AbstractPlatform
     */
    public function getDatabasePlatform()
    {
        return $this->_platform;
    }

    /**
     * Establishes the connection with the database.
     *
     * @return boolean
     */
    public function connect()
    {
        if ($this->_isConnected) return false;

        $driverOptions = isset($this->_params['driverOptions']) ?
romanb's avatar
romanb committed
305 306
                $this->_params['driverOptions'] : array();
        $user = isset($this->_params['user']) ? $this->_params['user'] : null;
romanb's avatar
romanb committed
307
        $password = isset($this->_params['password']) ?
romanb's avatar
romanb committed
308 309 310
                $this->_params['password'] : null;

        $this->_conn = $this->_driver->connect($this->_params, $user, $password, $driverOptions);
romanb's avatar
romanb committed
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325

        $this->_isConnected = true;

        return true;
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_ASSOC).
     *
     * @param string $statement The SQL query.
     * @param array $params The query parameters.
     * @return array
     */
    public function fetchRow($statement, array $params = array())
    {
326
        return $this->execute($statement, $params)->fetch(Connection::FETCH_ASSOC);
romanb's avatar
romanb committed
327 328 329 330 331 332 333 334 335 336 337
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_NUM).
     *
     * @param string $statement         sql query to be executed
     * @param array $params             prepared statement params
     * @return array
     */
    public function fetchArray($statement, array $params = array())
    {
338
        return $this->execute($statement, $params)->fetch(Connection::FETCH_NUM);
romanb's avatar
romanb committed
339 340 341 342 343 344 345 346 347 348 349 350
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_COLUMN, ...).
     *
     * @param string $statement         sql query to be executed
     * @param array $params             prepared statement params
     * @param int $colnum               0-indexed column number to retrieve
     * @return array
     */
    public function fetchColumn($statement, array $params = array(), $colnum = 0)
    {
351
        return $this->execute($statement, $params)->fetchAll(Connection::FETCH_COLUMN, $colnum);
romanb's avatar
romanb committed
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
    }

    /**
     * Whether an actual connection to the database is established.
     *
     * @return boolean
     */
    public function isConnected()
    {
        return $this->_isConnected;
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_BOTH).
     *
     * @param string $statement         sql query to be executed
     * @param array $params             prepared statement params
     * @return array
     */
    public function fetchBoth($statement, array $params = array())
    {
373
        return $this->execute($statement, $params)->fetchAll(Connection::FETCH_BOTH);
romanb's avatar
romanb committed
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
    }

    /**
     * Deletes table row(s) matching the specified identifier.
     *
     * @param string $table         The table to delete data from
     * @param array $identifier     An associateve array containing identifier fieldname-value pairs.
     * @return integer              The number of affected rows
     */
    public function delete($tableName, array $identifier)
    {
        $this->connect();
        $criteria = array();
        foreach (array_keys($identifier) as $id) {
            $criteria[] = $this->quoteIdentifier($id) . ' = ?';
        }

        $query = 'DELETE FROM '
392 393
                . $this->quoteIdentifier($tableName)
                . ' WHERE ' . implode(' AND ', $criteria);
romanb's avatar
romanb committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518

        return $this->exec($query, array_values($identifier));
    }

    /**
     * Closes the connection.
     *
     * @return void
     */
    public function close()
    {
        unset($this->_conn);
        $this->_isConnected = false;
    }

    /**
     * Sets the transaction isolation level.
     *
     * @param integer $level The level to set.
     */
    public function setTransactionIsolation($level)
    {
        $this->_transactionIsolationLevel = $level;
        return $this->exec($this->_platform->getSetTransactionIsolationSql($level));
    }

    /**
     * Gets the currently active transaction isolation level.
     *
     * @return integer The current transaction isolation level.
     */
    public function getTransactionIsolation()
    {
        return $this->_transactionIsolationLevel;
    }

    /**
     * Updates table row(s) with specified data
     *
     * @throws Doctrine\DBAL\ConnectionException    if something went wrong at the database level
     * @param string $table     The table to insert data into
     * @param array $values     An associateve array containing column-value pairs.
     * @return mixed            boolean false if empty value array was given,
     *                          otherwise returns the number of affected rows
     */
    public function update($tableName, array $data, array $identifier)
    {
        $this->connect();
        if (empty($data)) {
            return false;
        }

        $set = array();
        foreach ($data as $columnName => $value) {
            $set[] = $this->quoteIdentifier($columnName) . ' = ?';
        }

        $params = array_merge(array_values($data), array_values($identifier));

        $sql  = 'UPDATE ' . $this->quoteIdentifier($tableName)
        . ' SET ' . implode(', ', $set)
        . ' WHERE ' . implode(' = ? AND ', array_keys($identifier))
        . ' = ?';

        return $this->exec($sql, $params);
    }

    /**
     * Inserts a table row with specified data.
     *
     * @param string $table     The table to insert data into.
     * @param array $fields     An associateve array containing fieldname-value pairs.
     * @return mixed            boolean false if empty value array was given,
     *                          otherwise returns the number of affected rows
     */
    public function insert($tableName, array $data)
    {
        $this->connect();
        if (empty($data)) {
            return false;
        }

        // column names are specified as array keys
        $cols = array();
        $a = array();
        foreach ($data as $columnName => $value) {
            $cols[] = $this->quoteIdentifier($columnName);
            $a[] = '?';
        }

        $query = 'INSERT INTO ' . $this->quoteIdentifier($tableName)
        . ' (' . implode(', ', $cols) . ') '
        . 'VALUES (';
        $query .= implode(', ', $a) . ')';

        return $this->exec($query, array_values($data));
    }

    /**
     * Set the charset on the current connection
     *
     * @param string    charset
     */
    public function setCharset($charset)
    {
        $this->exec($this->_platform->getSetCharsetSql($charset));
    }

    /**
     * Quote a string so it can be safely used as a table or column name, even if
     * it is a reserved name.
     *
     * Delimiting style depends on the underlying database platform that is being used.
     *
     * NOTE: Just because you CAN use delimited identifiers doesn't mean
     * you SHOULD use them.  In general, they end up causing way more
     * problems than they solve.
     *
     * @param string $str           identifier name to be quoted
     * @param bool $checkOption     check the 'quote_identifier' option
     *
     * @return string               quoted identifier string
     */
    public function quoteIdentifier($str)
    {
519
        return $this->_platform->quoteIdentifier($str);
romanb's avatar
romanb committed
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
    }

    /**
     * Quotes a given input parameter.
     *
     * @param mixed $input  Parameter to be quoted.
     * @param string $type  Type of the parameter.
     * @return string  The quoted parameter.
     */
    public function quote($input, $type = null)
    {
        $this->connect();
        return $this->_conn->quote($input, $type);
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_ASSOC).
     *
     * @param string $sql The SQL query.
     * @param array $params The query parameters.
     * @return array
     */
    public function fetchAll($sql, array $params = array())
    {
544
        return $this->execute($sql, $params)->fetchAll(Connection::FETCH_ASSOC);
romanb's avatar
romanb committed
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
    }

    /**
     * Convenience method for PDO::query("...") followed by $stmt->fetchColumn().
     *
     * @param string $statement The SQL query.
     * @param array $params The query parameters.
     * @param int $colnum 0-indexed column number to retrieve
     * @return mixed
     */
    public function fetchOne($statement, array $params = array(), $colnum = 0)
    {
        return $this->execute($statement, $params)->fetchColumn($colnum);
    }

    /**
     * Prepares an SQL statement.
     *
     * @param string $statement
     * @return Statement
     */
    public function prepare($statement)
    {
        $this->connect();
        return $this->_conn->prepare($statement);
    }

    /**
     * Queries the database with limit and offset added to the query and returns
     * a Statement object.
     *
     * @param string $query
     * @param integer $limit
     * @param integer $offset
     * @return Statement
     */
    public function select($query, $limit = 0, $offset = 0)
    {
        if ($limit > 0 || $offset > 0) {
            $query = $this->_platform->modifyLimitQuery($query, $limit, $offset);
        }
        return $this->execute($query);
    }

    /**
     * Executes an SQL SELECT query with the given parameters.
     *
     * @param string $query     sql query
     * @param array $params     query parameters
     *
     * @return PDOStatement
     */
    public function execute($query, array $params = array())
    {
        $this->connect();

        if ($this->_config->getSqlLogger()) {
            $this->_config->getSqlLogger()->logSql($query, $params);
        }
romanb's avatar
romanb committed
604
        
romanb's avatar
romanb committed
605
        if ( ! empty($params)) {
romanb's avatar
romanb committed
606
            $stmt = $this->_conn->prepare($query);
romanb's avatar
romanb committed
607 608 609 610
            $stmt->execute($params);
        } else {
            $stmt = $this->_conn->query($query);
        }
romanb's avatar
romanb committed
611 612 613
        $this->_queryCount++;
        
        return $stmt;
romanb's avatar
romanb committed
614 615 616 617 618 619 620
    }

    /**
     * Executes an SQL INSERT/UPDATE/DELETE query with the given parameters.
     *
     * @param string $query     sql query
     * @param array $params     query parameters
621
     * @return integer
romanb's avatar
romanb committed
622 623 624 625 626 627 628 629 630 631 632
     * @todo Rename to executeUpdate().
     */
    public function exec($query, array $params = array())
    {
        $this->connect();

        if ($this->_config->getSqlLogger()) {
            $this->_config->getSqlLogger()->logSql($query, $params);
        }

        if ( ! empty($params)) {
romanb's avatar
romanb committed
633
            $stmt = $this->_conn->prepare($query);
romanb's avatar
romanb committed
634
            $stmt->execute($params);
romanb's avatar
romanb committed
635
            $result = $stmt->rowCount();
romanb's avatar
romanb committed
636
        } else {
romanb's avatar
romanb committed
637
            $result = $this->_conn->exec($query);
romanb's avatar
romanb committed
638
        }
romanb's avatar
romanb committed
639 640 641
        $this->_queryCount++;
        
        return $result;
romanb's avatar
romanb committed
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
    }

    /**
     * Returns the number of queries executed by the connection.
     *
     * @return integer
     */
    public function getQueryCount()
    {
        return $this->_queryCount;
    }

    /**
     * Returns the current transaction nesting level.
     *
     * @return integer  The nesting level. A value of 0 means theres no active transaction.
     */
    public function getTransactionNestingLevel()
    {
        return $this->_transactionNestingLevel;
    }

    /**
     * Fetch the SQLSTATE associated with the last operation on the database handle
     *
     * @return integer
     */
    public function errorCode()
    {
        $this->connect();
        return $this->_conn->errorCode();
    }

    /**
     * Fetch extended error information associated with the last operation on the database handle
     *
     * @return array
     */
    public function errorInfo()
    {
        $this->connect();
        return $this->_conn->errorInfo();
    }

    /**
     * Returns the ID of the last inserted row, or the last value from a sequence object,
     * depending on the underlying driver.
     *
     * Note: This method may not return a meaningful or consistent result across different drivers,
     * because the underlying database may not even support the notion of auto-increment fields or sequences.
     *
     * @param string $table     Name of the table into which a new row was inserted.
     * @param string $field     Name of the field into which a new row was inserted.
     */
romanb's avatar
romanb committed
696 697 698 699 700
    public function lastInsertId($seqName = null)
    {
        $this->connect();
        return $this->_conn->lastInsertId($seqName);
    }
701

romanb's avatar
romanb committed
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
    /**
     * Start a transaction or set a savepoint.
     *
     * if trying to set a savepoint and there is no active transaction
     * a new transaction is being started.
     *
     * @return boolean
     */
    public function beginTransaction()
    {
        $this->connect();
        if ($this->_transactionNestingLevel == 0) {
            $this->_conn->beginTransaction();
        }
        ++$this->_transactionNestingLevel;
        return true;
    }
719

romanb's avatar
romanb committed
720 721 722 723 724 725 726 727 728 729 730 731
    /**
     * Commits the database changes done during a transaction that is in
     * progress or release a savepoint. This function may only be called when
     * auto-committing is disabled, otherwise it will fail.
     *
     * @return boolean FALSE if commit couldn't be performed, TRUE otherwise
     */
    public function commit()
    {
        if ($this->_transactionNestingLevel == 0) {
            throw ConnectionException::commitFailedNoActiveTransaction();
        }
732

romanb's avatar
romanb committed
733
        $this->connect();
734

romanb's avatar
romanb committed
735 736 737
        if ($this->_transactionNestingLevel == 1) {
            $this->_conn->commit();
        }
romanb's avatar
romanb committed
738
        --$this->_transactionNestingLevel;
739

romanb's avatar
romanb committed
740 741
        return true;
    }
742

romanb's avatar
romanb committed
743 744 745 746 747 748 749 750 751 752 753 754 755 756
    /**
     * Cancel any database changes done during a transaction or since a specific
     * savepoint that is in progress. This function may only be called when
     * auto-committing is disabled, otherwise it will fail. Therefore, a new
     * transaction is implicitly started after canceling the pending changes.
     *
     * this method can be listened with onPreTransactionRollback and onTransactionRollback
     * eventlistener methods
     *
     * @param string $savepoint                 Name of a savepoint to rollback to.
     * @throws Doctrine\DBAL\ConnectionException   If the rollback operation fails at database level.
     * @return boolean                          FALSE if rollback couldn't be performed, TRUE otherwise.
     */
    public function rollback()
romanb's avatar
romanb committed
757
    {
romanb's avatar
romanb committed
758 759 760
        if ($this->_transactionNestingLevel == 0) {
            throw ConnectionException::rollbackFailedNoActiveTransaction();
        }
761

romanb's avatar
romanb committed
762
        $this->connect();
763

romanb's avatar
romanb committed
764 765 766 767 768
        if ($this->_transactionNestingLevel == 1) {
            $this->_transactionNestingLevel = 0;
            $this->_conn->rollback();
        }
        --$this->_transactionNestingLevel;
769

romanb's avatar
romanb committed
770 771
        return true;
    }
772

romanb's avatar
romanb committed
773 774 775 776 777 778 779 780 781 782
    /**
     * Gets the wrapped driver connection.
     *
     * @return Doctrine\DBAL\Driver\Connection
     */
    public function getWrappedConnection()
    {
        $this->connect();
        return $this->_conn;
    }
783

romanb's avatar
romanb committed
784 785 786 787 788 789 790 791 792 793 794 795 796
    /**
     * Gets the SchemaManager that can be used to inspect or change the
     * database schema through the connection.
     *
     * @return Doctrine\DBAL\Schema\SchemaManager
     */
    public function getSchemaManager()
    {
        if ( ! $this->_schemaManager) {
            $this->_schemaManager = $this->_driver->getSchemaManager($this);
        }
        return $this->_schemaManager;
    }
797
}