You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really nice to have a function inTransaction in Connection.php for more complex structures. PDO supports this
/** * Begin a transaction * * @return bool Whether the a transaction was previously requested */publicfunctionbeginTransaction()
{
if ($this->pdo === null) {
returnfalse;
}else{
return$this->pdo->inTransaction();
}
}
thanks in advance and
best Regards
Nicolas
The text was updated successfully, but these errors were encountered:
It would be really nice to have a function inTransaction in Connection.php for more complex structures. PDO supports this
thanks in advance and
best Regards
Nicolas
The text was updated successfully, but these errors were encountered: