From 26679ace12d1b1b9727db99329db32749de976ac Mon Sep 17 00:00:00 2001 From: Sieciech Date: Sat, 27 Feb 2021 11:31:29 +0100 Subject: [PATCH] parent --- index.php | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index fe9df6c..70842fe 100644 --- a/index.php +++ b/index.php @@ -18,14 +18,18 @@ class ConnectionManager { public static function Query(string $query, $params, $output = 'stdObject') { $stmt = self::$connection->prepare($query); $stmt->execute($params); - - $stmt->setFetchMode(PDO::FETCH_INTO, new $output()); - + $stmt->setFetchMode(PDO::FETCH_CLASS, $output); return $stmt->fetch(); } + public static function QueryAll(string $query, $params, $output = 'stdObject') { + $stmt = self::$connection->prepare($query); + $stmt->execute($params); + $stmt->setFetchMode(PDO::FETCH_CLASS, $output); + return $stmt->fetchAll(); + } } abstract class BaseModel { - protected static $sql = null; + protected static ISqlBase $sql = null; public static function Get(int $id) { static::Initialize(); @@ -35,16 +39,30 @@ abstract class BaseModel { get_called_class()); } + protected static function QueryAll($sql, $params) { + static::Initialize(); + return ConnectionManager::QueryAll( + $sql, + $params, + get_called_class()); + } + abstract public static function Initialize(); } - -class JobSql implements ISqlBase { +interface IJobSql implements ISqlBase { + public function GetLast10(): string; +} +class JobSql implements IJobSql { public function Get(): string { return "Select * from jobs where id = :id"; } + public function GetLast10() { + return "select * from jobs order by id desc limit 10"; + } } class Job extends BaseModel { + protected static IJobSql $sql; public int $id; public float $budget; public static function Initialize() { @@ -52,6 +70,9 @@ class Job extends BaseModel { self::$sql = new JobSql(); } } + public static function GetLast10() { + return self::QueryAll(self::$sql->GetLast10(), []); + } } $dns = 'pgsql:host=localhost;port=5432;dbname=dynamic_dev;user=test;password=pass123'; ConnectionManager::Connect($dns);