MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
mtransaction.class
Ir para a documentação deste ficheiro.
1<?php
7{
16 {
17 sqlite_exec($this->conn->id, 'BEGIN');
18 }
19
27 function _commit()
28 {
29 sqlite_exec($this->conn->id, 'COMMIT');
30 }
31
39 function _rollback()
40 {
41 sqlite_exec($this->conn->id, 'ROLLBACK');
42 }
43}
44?>