/usr/local/miolo2/classes/database/odbc/mtransaction.class

Go to the documentation of this file.
00001 <?php
00002 
00003 class ODBCTransaction extends MTransaction
00004 {
00005     function _begintransaction()
00006     {
00007         odbc_autocommit($this->conn->id, FALSE);
00008     }
00009 
00010     function _commit()
00011     {
00012         odbc_commit($this->conn->id);
00013     }
00014 
00015     function _rollback()
00016     {
00017         odbc_rollback($this->conn->id);
00018     }
00019 }
00020 ?>
CopyLeft (L) 2001-2006 - [MIOLO Development Team] SOLIS - Cooperativa de Soluções Livres - Lajeado/RS - Brasil