Changeset 320 for trunk/database.php


Ignore:
Timestamp:
Nov 27, 2011, 6:31:35 PM (13 years ago)
Author:
chronos
Message:
  • Opraveno: Do třídy databáze doplněny další funkce z dřívější mysqli.
  • Upraveno: Přepracován import aktualit zděchova.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/database.php

    r319 r320  
    3333  var $PDO;
    3434  var $Error = '';
     35  var $insert_id;
     36  var $LastQuery = '';
    3537 
    3638  function __construct($Host, $User, $Password, $Database)
     
    5153    global $Config;
    5254       
     55    $this->LastQuery = $Query;
    5356    if($Config['Web']['ShowSQLQuery'] == true)
    5457      echo('<div style="border-bottom-width: 1px; border-bottom-style: solid; padding-bottom: 3px; padding-top: 3px; font-size: 12px; font-family: Arial;">'.$Query.'</div>'."\n");
     
    8588    $Values = substr($Values, 1);
    8689    $this->PDO->query('INSERT INTO `'.$this->Prefix.$Table.'` ('.$Name.') VALUES('.$Values.')');
     90    $this->insert_id = $this->PDO->lastInsertId();
    8791  }
    8892 
     
    121125  }
    122126 
     127  function real_escape_string($Text)
     128  {
     129    return(addslashes($Text));
     130  }
     131 
    123132}
    124133
Note: See TracChangeset for help on using the changeset viewer.