A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.4 KiB

6 years ago
<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework\Databases;
use Phacil\Framework\Interfaces\Databases;
final class Postgre implements Databases {
/**
*
* @var resource|false
*/
6 years ago
private $link;
/**
*
* @param string $hostname
* @param string $username
* @param string $password
* @param string $database
* @param string $port
* @param string $charset
* @return void
* @throws Exception
*/
public function __construct($hostname, $username, $password, $database, $port = '5432', $charset = 'UTF8') {
6 years ago
if (!$this->link = pg_connect('host=' . $hostname . ' port=' . $port . ' user=' . $username . ' password=' . $password . ' dbname=' . $database)) {
throw new \Exception('Error: Could not make a database link using ' . $username . '@' . $hostname);
}
if (!pg_ping($this->link)) {
throw new \Exception('Error: Could not connect to database ' . $database);
}
pg_query($this->link, "SET CLIENT_ENCODING TO '".$charset."'");
6 years ago
}
public function isConnected() {
return ($this->link) ? true : false;
}
/**
* @param string $sql
* @return stdClass|true
* @throws Exception
*/
6 years ago
public function query($sql) {
$resource = pg_query($this->link, $sql);
if ($resource) {
if (is_resource($resource)) {
$i = 0;
$data = array();
while ($result = pg_fetch_assoc($resource)) {
$data[$i] = $result;
$i++;
}
pg_free_result($resource);
$query = new \stdClass();
$query->row = isset($data[0]) ? $data[0] : array();
$query->rows = $data;
$query->num_rows = $i;
unset($data);
return $query;
} else {
return true;
}
} else {
throw new \Exception('Error: ' . pg_result_error($this->link) . '<br />' . $sql);
}
}
/**
* @param string $value
* @return string
*/
6 years ago
public function escape($value) {
return pg_escape_string($this->link, $value);
}
/** @return int */
6 years ago
public function countAffected() {
return pg_affected_rows($this->link);
}
/**
* @return mixed
* @throws Exception
*/
6 years ago
public function getLastId() {
$query = $this->query("SELECT LASTVAL() AS `id`");
return $query->row['id'];
}
/** @return void */
6 years ago
public function __destruct() {
pg_close($this->link);
}
}