init
This commit is contained in:
parent
dbe6800757
commit
b39c293b97
10
index.php
10
index.php
|
@ -43,15 +43,13 @@ class JobSql implements ISqlBase {
|
|||
public function Get(): string {
|
||||
return "Select * from jobs where id = :id";
|
||||
}
|
||||
public static function Create() {
|
||||
return new Job();
|
||||
}
|
||||
}
|
||||
|
||||
class Job extends BaseModel {
|
||||
private static $sql = JobSql::Create();
|
||||
public function __construct() {
|
||||
parent::__construct( new JobSql() );
|
||||
public static function Initialize() {
|
||||
if (self::$sql === null) {
|
||||
self::$sql = new JobSql();
|
||||
}
|
||||
}
|
||||
}
|
||||
$dns = 'pgsql:host=localhost;port=5432;dbname=dynamic_dev;user=test;password=pass123';
|
||||
|
|
Loading…
Reference in New Issue