Ignore:
Timestamp:
2006/09/26 12:57:18 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

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

    r5872 r5873  
    3939 
    4040    function commit() { 
     41        $this->conn->query("COMMIT"); 
    4142        $this->conn->query("SET AUTOCOMMIT=1;"); 
    42         $this->conn->query("COMMIT"); 
    4343    } 
    4444     
     
    5050     
    5151    function rollback() { 
     52        $this->conn->query("ROLLBACK"); 
    5253        $this->conn->query("SET AUTOCOMMIT=1;"); 
    53         $this->conn->query("ROLLBACK"); 
    5454    } 
    5555     
Note: See TracChangeset for help on using the changeset viewer.