Changeset 33 for database.php


Ignore:
Timestamp:
Mar 12, 2009, 6:01:58 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Vlastní obsluha chyb.
  • Přidáno: Import dat z databáze centrály.
  • Opraveno: Řazení řádků v tabulkách při přepínání stránek.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • database.php

    r30 r33  
    88  var $Prefix = '';
    99  var $LastQuery = '';
    10   var $ShowError = 0;
    1110
    1211  function query($Query)
    1312  {
    14     $this->LastQuery = $Query;
     13    global $Config;
     14
     15        if($Config['Web']['ShowSQLQuery'] == true)
     16          echo('<div style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: silver; padding-bottom: 2px; padding-top: 2px; font-size: 12px; font-family: Arial;">'.$Query.'</div>');
     17        $this->LastQuery = $Query;
    1518    $DbResult = parent::query($Query);
    16     if(($this->ShowError == TRUE) and ($this->error != ''))
     19    if(($this->error != '') and ($Config['Web']['ShowSQLError'] == true))
    1720    {
    1821      echo('<strong>Database error:</strong> '.$this->error.'<br />');
     
    7073      $Value = strtr($Value, '"', '\"');
    7174      if($Value != 'NOW()') $Value = "'".$Value."'";
    72       $Values .= ", ".$Key."=".$Value;
     75      $Values .= ", `".$Key."`=".$Value;
    7376    }
    7477    $Values = substr($Values, 2);
Note: See TracChangeset for help on using the changeset viewer.