\PDO::ERRMODE_SILENT ); /** * The number of rows affected by the last operation * * @var int */ private $affectedRows = 0; /** * The data for the database connection * * @var \stdClass */ private $params = array(); /** * @inheritdoc */ public function __construct($host, $user, $pass, $name, $port = '3306', $charset = 'utf8mb4') { $this->params = new \stdClass; # keep connection data $this->params->host = $host; $this->params->user = $user; $this->params->pass = $pass; $this->params->name = $name; $this->params->charset = $charset; $this->params->connstr = "mysql:host={$host};port={$port};dbname={$name};charset={$charset}"; # add the connection parameters $this->options['PDO::MYSQL_ATTR_INIT_COMMAND'] = "SET NAMES '{$charset}'"; $this->connect(); } /** @inheritdoc */ public function isConnected() { if ($this->dbh) { return true; } else { return false; } } /** * Connect to database */ public function connect() { try { $this->dbh = new \PDO($this->params->connstr, $this->params->user, $this->params->pass, $this->options); if (version_compare(PHP_VERSION, '5.3.6', '<=')) { $this->dbh->exec($this->options['PDO::MYSQL_ATTR_INIT_COMMAND']); } } catch (\PDOException $exception) { throw new \Phacil\Framework\Exception($exception->getMessage()); } } /** * @inheritdoc */ public function query($sql) { if ($this->dbh) { $sth=$this->dbh->prepare($sql); $sth->execute(); //$sth= $this->dbh->query($sql); $this->affectedRows = $sth->rowCount(); /** @var \Phacil\Framework\Databases\Object\ResultInterface */ $data = \Phacil\Framework\Registry::getInstance()->create(\Phacil\Framework\Databases\Object\ResultInterface::class, [$sth ? $sth->fetchAll(\PDO::FETCH_ASSOC) : array()]); $data->setNumRows($this->affectedRows); return $data; } return null; } /** * Concludes the string in quotation marks to be used in the query * * @param mixed $string shielded line * @return string Returns shielded line or to FALSE , if the driver does not support screening */ public function escape($string = null) { return $this->dbh ? str_replace("'", "", $this->dbh->quote($string)) : null; } /** * {@inheritdoc} */ public function countAffected() { return $this->affectedRows; } /** * @inheritdoc */ public function getLastId() { return $this->dbh ? $this->dbh->lastInsertId() : 0; } /** * Gets the name of the driver * * @return string|null */ public function getDriverName() { return $this->dbh ? $this->dbh->getAttribute(\PDO::ATTR_DRIVER_NAME) : null; } /** * Get information about the version of the client libraries that are used by the PDO driver * * @return string|null */ public function getVersion() { return $this->dbh ? $this->dbh->getAttribute(\PDO::ATTR_CLIENT_VERSION) : null; } /** * Closing a database connection */ public function close() { $this->dbh = null; } /** * @inheritdoc */ public function execute($sql, array $params = []) { try { $stmt = $this->dbh->prepare($sql); if ($stmt === false) { throw new \Phacil\Framework\Exception('Error preparing query: ' . implode(', ', $this->dbh->errorInfo())); } // Bind parameters if there are any if (!empty($params)) { foreach ($params as $placeholder => &$param) { $stmt->bindParam($placeholder, $param, $this->getParamType($param)); } } $stmt->execute(); if ($stmt->columnCount()) { /** @var \Phacil\Framework\Databases\Object\ResultInterface */ $data = \Phacil\Framework\Registry::getInstance()->create(\Phacil\Framework\Databases\Object\ResultInterface::class, [$stmt->fetchAll(\PDO::FETCH_ASSOC)]); $data->setNumRows($stmt->rowCount()); $stmt->closeCursor(); return $data; } else { $this->affectedRows = $stmt->rowCount(); $stmt->closeCursor(); return true; } } catch (\PDOException $exception) { throw new \Phacil\Framework\Exception($exception->getMessage()); } } /** * * @param mixed $param * @return int */ private function getParamType(&$param) { $paramType = gettype($param); switch ($paramType) { case 'boolean': $paramType = \PDO::PARAM_BOOL; break; case 'integer': $paramType = \PDO::PARAM_INT; break; case 'double': case 'float': $paramType = \PDO::PARAM_STR; break; case 'NULL': $paramType = \PDO::PARAM_NULL; break; default: $paramType = \PDO::PARAM_STR; break; } return $paramType; } /** * * {@inheritdoc} */ public function getDBType() { return self::DB_TYPE; } /** * * {@inheritdoc} */ public function getDBTypeId() { return self::DB_TYPE_ID; } }