File "Connection.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/Portability/Connection.php
File size: 2.46 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\DBAL\Portability;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\DBAL\Cache\QueryCacheProfile;
use MailPoetVendor\Doctrine\DBAL\ColumnCase;
use MailPoetVendor\Doctrine\DBAL\Connection as BaseConnection;
use MailPoetVendor\Doctrine\DBAL\Driver\PDO\Connection as PDOConnection;
use MailPoetVendor\Doctrine\DBAL\ForwardCompatibility;
use PDO;
use function func_get_args;
use const CASE_LOWER;
use const CASE_UPPER;
class Connection extends BaseConnection
{
 public const PORTABILITY_ALL = 255;
 public const PORTABILITY_NONE = 0;
 public const PORTABILITY_RTRIM = 1;
 public const PORTABILITY_EMPTY_TO_NULL = 4;
 public const PORTABILITY_FIX_CASE = 8;
 public const PORTABILITY_DB2 = 13;
 public const PORTABILITY_ORACLE = 9;
 public const PORTABILITY_POSTGRESQL = 13;
 public const PORTABILITY_SQLITE = 13;
 public const PORTABILITY_OTHERVENDORS = 12;
 public const PORTABILITY_DRIZZLE = 13;
 public const PORTABILITY_SQLANYWHERE = 13;
 public const PORTABILITY_SQLSRV = 13;
 private $portability = self::PORTABILITY_NONE;
 private $case;
 public function connect()
 {
 $ret = parent::connect();
 if ($ret) {
 $params = $this->getParams();
 if (isset($params['portability'])) {
 $this->portability = $params['portability'] = (new OptimizeFlags())($this->getDatabasePlatform(), $params['portability']);
 }
 if (isset($params['fetch_case']) && $this->portability & self::PORTABILITY_FIX_CASE) {
 if ($this->_conn instanceof PDOConnection) {
 // make use of c-level support for case handling
 $this->_conn->setAttribute(PDO::ATTR_CASE, $params['fetch_case']);
 } else {
 $this->case = $params['fetch_case'] === ColumnCase::LOWER ? CASE_LOWER : CASE_UPPER;
 }
 }
 }
 return $ret;
 }
 public function getPortability()
 {
 return $this->portability;
 }
 public function getFetchCase()
 {
 return $this->case;
 }
 public function executeQuery($sql, array $params = [], $types = [], ?QueryCacheProfile $qcp = null)
 {
 $stmt = new Statement(parent::executeQuery($sql, $params, $types, $qcp), $this);
 $stmt->setFetchMode($this->defaultFetchMode);
 return new ForwardCompatibility\Result($stmt);
 }
 public function prepare($sql)
 {
 $stmt = new Statement(parent::prepare($sql), $this);
 $stmt->setFetchMode($this->defaultFetchMode);
 return $stmt;
 }
 public function query()
 {
 $connection = $this->getWrappedConnection();
 $stmt = $connection->query(...func_get_args());
 $stmt = new Statement($stmt, $this);
 $stmt->setFetchMode($this->defaultFetchMode);
 return $stmt;
 }
}