MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
mtransaction.class
Ir para a documentação deste ficheiro.
1<?php
7{
16 {
17 $this->conn->_execute("begin transaction");
18 }
19
27 function _commit()
28 {
29 $this->conn->_execute("commit");
30 }
31
39 function _rollback()
40 {
41 $this->conn->_execute("rollback");
42 }
43}
44?>