| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <?php
- /*
- * 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 MIT license. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\DBAL\Driver\SQLAnywhere;
- use Doctrine\DBAL\Driver\Connection;
- use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
- /**
- * SAP Sybase SQL Anywhere implementation of the Connection interface.
- *
- * @author Steve Müller <st.mueller@dzh-online.de>
- * @link www.doctrine-project.org
- * @since 2.5
- */
- class SQLAnywhereConnection implements Connection, ServerInfoAwareConnection
- {
- /**
- * @var resource The SQL Anywhere connection resource.
- */
- private $connection;
- /**
- * Constructor.
- *
- * Connects to database with given connection string.
- *
- * @param string $dsn The connection string.
- * @param boolean $persistent Whether or not to establish a persistent connection.
- *
- * @throws SQLAnywhereException
- */
- public function __construct($dsn, $persistent = false)
- {
- $this->connection = $persistent ? @sasql_pconnect($dsn) : @sasql_connect($dsn);
- if ( ! is_resource($this->connection) || get_resource_type($this->connection) !== 'SQLAnywhere connection') {
- throw SQLAnywhereException::fromSQLAnywhereError();
- }
- // Disable PHP warnings on error.
- if ( ! sasql_set_option($this->connection, 'verbose_errors', false)) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- // Enable auto committing by default.
- if ( ! sasql_set_option($this->connection, 'auto_commit', 'on')) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- // Enable exact, non-approximated row count retrieval.
- if ( ! sasql_set_option($this->connection, 'row_counts', true)) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- }
- /**
- * {@inheritdoc}
- *
- * @throws SQLAnywhereException
- */
- public function beginTransaction()
- {
- if ( ! sasql_set_option($this->connection, 'auto_commit', 'off')) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- return true;
- }
- /**
- * {@inheritdoc}
- *
- * @throws SQLAnywhereException
- */
- public function commit()
- {
- if ( ! sasql_commit($this->connection)) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- $this->endTransaction();
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function errorCode()
- {
- return sasql_errorcode($this->connection);
- }
- /**
- * {@inheritdoc}
- */
- public function errorInfo()
- {
- return sasql_error($this->connection);
- }
- /**
- * {@inheritdoc}
- */
- public function exec($statement)
- {
- $stmt = $this->prepare($statement);
- $stmt->execute();
- return $stmt->rowCount();
- }
- /**
- * {@inheritdoc}
- */
- public function getServerVersion()
- {
- return $this->query("SELECT PROPERTY('ProductVersion')")->fetchColumn();
- }
- /**
- * {@inheritdoc}
- */
- public function lastInsertId($name = null)
- {
- if (null === $name) {
- return sasql_insert_id($this->connection);
- }
- return $this->query('SELECT ' . $name . '.CURRVAL')->fetchColumn();
- }
- /**
- * {@inheritdoc}
- */
- public function prepare($prepareString)
- {
- return new SQLAnywhereStatement($this->connection, $prepareString);
- }
- /**
- * {@inheritdoc}
- */
- public function query()
- {
- $args = func_get_args();
- $stmt = $this->prepare($args[0]);
- $stmt->execute();
- return $stmt;
- }
- /**
- * {@inheritdoc}
- */
- public function quote($input, $type = \PDO::PARAM_STR)
- {
- if (is_int($input) || is_float($input)) {
- return $input;
- }
- return "'" . sasql_escape_string($this->connection, $input) . "'";
- }
- /**
- * {@inheritdoc}
- */
- public function requiresQueryForServerVersion()
- {
- return true;
- }
- /**
- * {@inheritdoc}
- *
- * @throws SQLAnywhereException
- */
- public function rollBack()
- {
- if ( ! sasql_rollback($this->connection)) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- $this->endTransaction();
- return true;
- }
- /**
- * Ends transactional mode and enables auto commit again.
- *
- * @throws SQLAnywhereException
- *
- * @return boolean Whether or not ending transactional mode succeeded.
- */
- private function endTransaction()
- {
- if ( ! sasql_set_option($this->connection, 'auto_commit', 'on')) {
- throw SQLAnywhereException::fromSQLAnywhereError($this->connection);
- }
- return true;
- }
- }
|