This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/core/Database.php

30 lines
918 B
PHP
Raw Normal View History

2022-01-20 21:23:21 +00:00
<?php
// Encapsulates a single connection to a database
// TODO: refactor and add different driver implementations
class Database
{
public object $conn; // Holds PDO connection object
public function __construct(array $config)
{
if ($config['name'] !== 'mysql') {
throw new Exception("Database error: ".$config['name']." is not implemented");
}
try {
$this->conn = $this->connectWithMySQL($config['args']);
} catch (PDOException $e) {
throw new PDOException("Database error: " . $e->getMessage());
}
}
private function connectWithMySQL(array $args): object
{
2022-01-21 20:16:14 +00:00
$dsn = "mysql:host={$args['host']};dbname={$args['database']};charset={$args['charset']}";
2022-01-20 21:23:21 +00:00
$options = [
PDO::ATTR_PERSISTENT => true,
];
2022-01-21 20:16:14 +00:00
return new PDO($dsn, $args['user'], $args['password'], $options);
2022-01-20 21:23:21 +00:00
}
}