commit b17d77c4afc5c792c49af2b7a44155ce780549ba
parent 9f8eead8e5f8b9d0ac39e9865ac92aa354aa8e8e
Author: Friedel Schon <[email protected]>
Date: Fri, 31 Mar 2023 11:30:57 +0200
halverwege orm.php
Diffstat:
A | index.php | | | 14 | ++++++++++++++ |
A | orm.php | | | 43 | +++++++++++++++++++++++++++++++++++++++++++ |
2 files changed, 57 insertions(+), 0 deletions(-)
diff --git a/index.php b/index.php
@@ -0,0 +1,13 @@
+<?php
+
+require_once "orm.php";
+
+class User
+{
+
+}
+
+$db = new Lollipop\SQLDatabase("86.92.67.21", "friedel", "hailiwa", "lollipop");
+$db->register(User::class);
+
+$db->get("user");
+\ No newline at end of file
diff --git a/orm.php b/orm.php
@@ -0,0 +1,42 @@
+<?php
+
+namespace Lollipop;
+
+use mysqli;
+
+class DatabaseObject
+{
+ protected SQLDatabase $db;
+ protected string $table;
+
+ function __construct(SQLDatabase $db, string $table)
+ {
+ $this->db = $db;
+ $this->table = $table;
+ }
+
+ function select($x)
+ {
+
+ }
+}
+
+class SQLDatabase
+{
+ protected mysqli $conn;
+
+ function __construct(string $host, string $username, string $password, string $database = null, int $port = null)
+ {
+ $this->conn = new mysqli($host, $username, $password, $database, $port);
+ }
+
+ function register(string $class)
+ {
+ get_class()
+ }
+
+ function get(string $table): DatabaseObject
+ {
+ return new DatabaseObject($this, $table);
+ }
+}
+\ No newline at end of file