Compare commits

2 Commits

Author SHA1 Message Date
1d80d93b1d add: DB auto_increment 2023-01-12 14:43:28 +01:00
151b1ab549 phpdoc 2023-01-12 14:05:19 +01:00
2 changed files with 21 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ time_zone = "+00:00";
CREATE TABLE `ingredienti` CREATE TABLE `ingredienti`
( /*Zutaten*/ ( /*Zutaten*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`cognome` varchar(200) NOT NULL, /*Name*/ `cognome` varchar(200) NOT NULL, /*Name*/
`caloriePerCento` integer(5) NOT NULL, /*Kalorien pro Gramm*/ `caloriePerCento` integer(5) NOT NULL, /*Kalorien pro Gramm*/
`ilPeso` integer(5) NULL, /*Gewicht*/ `ilPeso` integer(5) NULL, /*Gewicht*/
@@ -16,14 +16,14 @@ CREATE TABLE `ingredienti`
CREATE TABLE `folla` CREATE TABLE `folla`
( /*Menge*/ ( /*Menge*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`unita` varchar(200) NOT NULL, /*Einheit*/ `unita` varchar(200) NOT NULL, /*Einheit*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `elenco` CREATE TABLE `elenco`
( /*Liste*/ ( /*Liste*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`creatore` varchar(200) NOT NULL, /*Ersteller*/ `creatore` varchar(200) NOT NULL, /*Ersteller*/
`coloreDiSfondo` integer(10) NOT NULL, /*Hintergrundfarbe*/ `coloreDiSfondo` integer(10) NOT NULL, /*Hintergrundfarbe*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
@@ -31,7 +31,7 @@ CREATE TABLE `elenco`
CREATE TABLE `utente` CREATE TABLE `utente`
( /*Benutzer*/ ( /*Benutzer*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`email` varchar(200) NOT NULL, /*Email*/ `email` varchar(200) NOT NULL, /*Email*/
`parolaDordine` varchar(255) NOT NULL, /*Passwort*/ `parolaDordine` varchar(255) NOT NULL, /*Passwort*/
`nomeUtente` varchar(50) UNIQUE NOT NULL, /*Benutzernamen*/ `nomeUtente` varchar(50) UNIQUE NOT NULL, /*Benutzernamen*/
@@ -41,7 +41,7 @@ CREATE TABLE `utente`
CREATE TABLE `elencoIngredienti` CREATE TABLE `elencoIngredienti`
( /*Liste_Zutaten*/ ( /*Liste_Zutaten*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`ingredientiID` varchar(36) NOT NULL, /*ZutatenID*/ `ingredientiID` varchar(36) NOT NULL, /*ZutatenID*/
`elencoID` varchar(36) NOT NULL, /*ListeID*/ `elencoID` varchar(36) NOT NULL, /*ListeID*/
`follaID` varchar(36) NOT NULL, /*MengeID*/ `follaID` varchar(36) NOT NULL, /*MengeID*/
@@ -50,7 +50,7 @@ CREATE TABLE `elencoIngredienti`
CREATE TABLE `utenteElenco` CREATE TABLE `utenteElenco`
( /*Benutzer_Liste*/ ( /*Benutzer_Liste*/
`id` varchar(36) NOT NULL, `id` int auto_increment NOT NULL,
`elencoID` varchar(36) NOT NULL, /*ListeID*/ `elencoID` varchar(36) NOT NULL, /*ListeID*/
`utenteID` varchar(36) NOT NULL, /*BenutzerID*/ `utenteID` varchar(36) NOT NULL, /*BenutzerID*/
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP

View File

@@ -100,16 +100,23 @@ class BancaDati {
} }
} }
/**
public function select(string $table, array $data, array $order = null){ * einheitliche Select Funktion
$where = ""; * @param string $table
foreach ($data as $col => $v) { * @param array $where ["column"]=>"value" es wird mit LIKE verglichen und mit AND verbunden
if($where != ""){ * @param array|null $order ["by"]=>"column"; ["order"]=>"ASC|DESC"
$where .= " AND "; * @return void
* @author Malte Schulze Hobeling
*/
public function select(string $table, array $where, array $order = null){
$whereString = "";
foreach ($where as $col => $v) {
if($whereString != ""){
$whereString .= " AND ";
} }
$where .= $col . "=" . $v; $whereString .= $col . " LIKE " . $v;
} }
$sql = "SELECT * FROM ".$table." WHERE ".$where; $sql = "SELECT * FROM ".$table." WHERE ".$whereString;
if(isset($order["by"])){ if(isset($order["by"])){
$sql .= " ORDER BY ".$order["by"]; $sql .= " ORDER BY ".$order["by"];
} }