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.
102 lines
2.4 KiB
102 lines
2.4 KiB
<?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;
|
|
|
|
/**
|
|
* Legacy class to connect a MS SQL Server with PHP 5 legacy driver.
|
|
*
|
|
* Doesn't work with PHP 7+
|
|
* @package Phacil\Framework\Databases */
|
|
final class MSSQL implements \Phacil\Framework\Interfaces\Databases
|
|
{
|
|
private $connection;
|
|
|
|
public function __construct($hostname, $username, $password, $database, $port = '1443', $charset = 'utf8')
|
|
{
|
|
if (!$this->connection = mssql_connect($hostname, $username, $password)) {
|
|
throw new \Phacil\Framework\Exception('Error: Could not make a database connection using ' . $username . '@' . $hostname);
|
|
}
|
|
|
|
if (!mssql_select_db($database, $this->connection)) {
|
|
throw new \Phacil\Framework\Exception('Error: Could not connect to database ' . $database);
|
|
}
|
|
|
|
mssql_query("SET NAMES 'utf8'", $this->connection);
|
|
mssql_query("SET CHARACTER SET utf8", $this->connection);
|
|
mssql_query("SET CHARACTER_SET_CONNECTION=utf8", $this->connection);
|
|
}
|
|
|
|
public function query($sql)
|
|
{
|
|
$resource = mssql_query($sql, $this->connection);
|
|
|
|
if ($resource) {
|
|
if (is_resource($resource)) {
|
|
$i = 0;
|
|
|
|
$data = array();
|
|
|
|
while ($result = mssql_fetch_assoc($resource)) {
|
|
$data[$i] = $result;
|
|
|
|
$i++;
|
|
}
|
|
|
|
mssql_free_result($resource);
|
|
|
|
$query = new \Phacil\Framework\Databases\Object\Result();
|
|
$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 \Phacil\Framework\Exception('Error: ' . mssql_get_last_message($this->connection) . '<br />' . $sql);
|
|
}
|
|
}
|
|
|
|
public function escape($value)
|
|
{
|
|
return mssql_real_escape_string($value, $this->connection);
|
|
}
|
|
|
|
public function countAffected()
|
|
{
|
|
return mssql_rows_affected($this->connection);
|
|
}
|
|
|
|
public function getLastId()
|
|
{
|
|
$last_id = false;
|
|
|
|
$resource = mssql_query("SELECT @@identity AS id", $this->connection);
|
|
|
|
if ($row = mssql_fetch_row($resource)) {
|
|
$last_id = trim($row[0]);
|
|
}
|
|
|
|
mssql_free_result($resource);
|
|
|
|
return $last_id;
|
|
}
|
|
|
|
function isConnected()
|
|
{
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
mssql_close($this->connection);
|
|
}
|
|
}
|
|
|