Subversion Repositories PHPX

Rev

Rev 76 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 76 Rev 77
Line 679... Line 679...
679
    $errorInfo =& $this->_lastError;
679
    $errorInfo =& $this->_lastError;
680
    $errorInfo =  $stmt->errorInfo();
680
    $errorInfo =  $stmt->errorInfo();
681
681
682
    $result =& $this->_lastResult;
682
    $result =& $this->_lastResult;
683
683
684
    if ($fetchAll)
684
    $result = ($fetchAll
685
    {
-
 
686
      $result = $stmt->fetchAll($fetch_style);
685
      ? $stmt->fetchAll($fetch_style)
687
    }
-
 
688
    else
-
 
689
    {
-
 
690
      $result = $stmt;
686
      : $stmt);
691
    }
-
 
692
687
693
    if (defined('DEBUG') && DEBUG > 1)
688
    if (defined('DEBUG') && DEBUG > 1)
694
    {
689
    {
695
      debug(array(
690
      debug(array(
696
        '_lastSuccess' => $success,
691
        '_lastSuccess' => $success,