Changeset 148 for www/database.php


Ignore:
Timestamp:
Feb 15, 2009, 7:59:35 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Přepracován systém generování zobrazení výstupu. Pro nový systím přepsáno mnoho stránek.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • www/database.php

    r129 r148  
    99  var $LastQuery = '';
    1010 
     11  function query($Query)
     12  {
     13    $this->LastQuery = $Query;
     14    return(parent::query($Query)); 
     15  }
     16
    1117  function select($Table, $What = '*', $Condition = 1)
    1218  {
     
    3036      $Name .= ',`'.$Key.'`';
    3137            if($Value == 'NOW()') $Values .= ",".$Value;
     38else if($Value == 'UUID()') $Values .= ",".$Value;
    3239              else $Values .= ",'".$Value."'";
    3340    }
Note: See TracChangeset for help on using the changeset viewer.