| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/system/library/db/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/system/library/db/pgsql.php |
<?php
namespace Opencart\System\Library\DB;
/**
* Class PgSQL
*
* @package Opencart\System\Library\DB
*/
class PgSQL {
/**
* @var mixed
*/
private $connection;
/**
* Constructor
*
* @param string $hostname
* @param string $username
* @param string $password
* @param string $database
* @param string $port
*/
public function __construct(string $hostname, string $username, string $password, string $database, string $port = '') {
if (!$port) {
$port = '5432';
}
try {
$pg = @pg_connect('host=' . $hostname . ' port=' . $port . ' user=' . $username . ' password=' . $password . ' dbname=' . $database . ' options=\'--client_encoding=UTF8\' ');
} catch (\Exception $e) {
throw new \Exception('Error: Could not make a database link using ' . $username . '@' . $hostname);
}
if ($pg) {
$this->connection = $pg;
pg_query($this->connection, "SET CLIENT_ENCODING TO 'UTF8'");
// Sync PHP and DB time zones
pg_query($this->connection, "SET TIMEZONE = '" . $this->escape(date('P')) . "'");
}
}
/**
* Query
*
* @param string $sql
*
* @return \stdClass
*/
public function query(string $sql): \stdClass {
$resource = pg_query($this->connection, $sql);
if ($resource === false) {
throw new \Exception('Error: ' . pg_last_error($this->connection) . '<br/>' . $sql);
}
$data = [];
while ($result = pg_fetch_assoc($resource)) {
$data[] = $result;
}
pg_free_result($resource);
$query = new \stdClass();
$query->row = $data[0] ?? [];
$query->rows = $data;
$query->num_rows = count($data);
return $query;
}
/**
* Escape
*
* @param string $value
*
* @return string
*/
public function escape(string $value): string {
return pg_escape_string($this->connection, $value);
}
/**
* Count Affected
*
* @return int
*/
public function countAffected(): int {
return pg_affected_rows($this->connection);
}
/**
* Get Last Id
*
* @return int
*/
public function getLastId(): int {
$query = $this->query("SELECT LASTVAL() AS `id`");
return $query->row['id'];
}
/**
* Is Connected
*
* @return bool
*/
public function isConnected(): bool {
return pg_connection_status($this->connection) == PGSQL_CONNECTION_OK;
}
/**
* Destructor
*
* Closes the DB connection when this object is destroyed.
*/
public function __destruct() {
if ($this->connection) {
pg_close($this->connection);
$this->connection = null;
}
}
}