mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Transactions not required here either, actually
This commit is contained in:
parent
5954b96813
commit
2b2ffb8052
1 changed files with 0 additions and 4 deletions
|
@ -130,14 +130,10 @@ class DBLayer {
|
|||
foreach ($data as $key => $value) {
|
||||
$sth->bindValue( ":$key", $value );
|
||||
}
|
||||
$this->PDO->beginTransaction();
|
||||
$sth->execute();
|
||||
$lastId = $this->PDO->lastInsertId();
|
||||
$this->PDO->commit();
|
||||
}
|
||||
catch (Exception $e) {
|
||||
// for rolling back the changes during transaction
|
||||
$this->PDO->rollBack();
|
||||
throw $e; // new Exception( "error in inseting" );
|
||||
}
|
||||
return $lastId;
|
||||
|
|
Loading…
Reference in a new issue