Changeset 9 for database.php


Ignore:
Timestamp:
Oct 11, 2008, 11:06:21 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Částečná podpora pro historii všech záznamů. Editace vytváří nový záznam. Zobrazení historie dané položky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • database.php

    r1 r9  
    1111  function query($Query)
    1212  {
    13     $this->LastQuery = $Query; 
    14     return(parent::query($Query)); 
     13    $this->LastQuery = $Query;
     14    return(parent::query($Query));
    1515  }
    1616
     
    1818  {
    1919    $this->LastQuery = "SELECT ".$What." FROM `".$this->Prefix.$Table."` WHERE ".$Condition;
    20     return($this->query($this->LastQuery)); 
     20    return($this->query($this->LastQuery));
    2121  }
    2222
     
    2424  {
    2525    $this->LastQuery = "DELETE FROM `".$this->Prefix.$Table."` WHERE ".$Condition;
    26     $this->query($this->LastQuery); 
     26    $this->query($this->LastQuery);
    2727  }
    2828 
     
    4141    $Values = substr($Values, 1);
    4242    $this->LastQuery = 'INSERT INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')';
    43     $this->query($this->LastQuery); 
     43    $this->query($this->LastQuery);
    4444  }
    4545 
Note: See TracChangeset for help on using the changeset viewer.