Index: temp/trunk/data/class/SC_Query.php
===================================================================
--- temp/trunk/data/class/SC_Query.php	(revision 5876)
+++ temp/trunk/data/class/SC_Query.php	(revision 5878)
@@ -40,16 +40,12 @@
 	function commit() {
 		$this->conn->query("COMMIT");
-//		$this->conn->query("SET AUTOCOMMIT=1;");
 	}
 	
 	function begin() {
-//		$this->conn->query("BEGIN");
-//		$this->conn->query("SET AUTOCOMMIT=0;");
-		$this->conn->query("START TRANSACTION;");
+		$this->conn->query("BEGIN");
 	}
 	
 	function rollback() {
 		$this->conn->query("ROLLBACK");
-//		$this->conn->query("SET AUTOCOMMIT=1;");
 	}
 	
@@ -57,5 +53,5 @@
 		$this->conn->query($str, $arrval);
 	}
-	
+
 	function autoselect($col, $table, $arrwhere = array(), $arrcon = array()) {
 		$strw = "";			
