Changeset 5878 for temp/trunk/data/class


Ignore:
Timestamp:
2006/09/26 13:52:34 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/SC_Query.php

    r5876 r5878  
    4040    function commit() { 
    4141        $this->conn->query("COMMIT"); 
    42 //      $this->conn->query("SET AUTOCOMMIT=1;"); 
    4342    } 
    4443     
    4544    function begin() { 
    46 //      $this->conn->query("BEGIN"); 
    47 //      $this->conn->query("SET AUTOCOMMIT=0;"); 
    48         $this->conn->query("START TRANSACTION;"); 
     45        $this->conn->query("BEGIN"); 
    4946    } 
    5047     
    5148    function rollback() { 
    5249        $this->conn->query("ROLLBACK"); 
    53 //      $this->conn->query("SET AUTOCOMMIT=1;"); 
    5450    } 
    5551     
     
    5753        $this->conn->query($str, $arrval); 
    5854    } 
    59      
     55 
    6056    function autoselect($col, $table, $arrwhere = array(), $arrcon = array()) { 
    6157        $strw = "";          
Note: See TracChangeset for help on using the changeset viewer.