MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
mtransaction.class
Ir para a documentação deste ficheiro.
1
<?php
6
class
PostgresTransaction
extends
MTransaction
7
{
15
function
_begintransaction
()
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
?>
MTransaction
Definição
mtransaction.class:3
PostgresTransaction
Definição
mtransaction.class:7
PostgresTransaction\_rollback
_rollback()
Definição
mtransaction.class:39
PostgresTransaction\_begintransaction
_begintransaction()
Definição
mtransaction.class:15
PostgresTransaction\_commit
_commit()
Definição
mtransaction.class:27
classes
database
postgres
mtransaction.class
Gerado por
1.10.0