1
0
mirror of synced 2024-12-14 07:06:04 +03:00
This commit is contained in:
zYne 2007-02-17 18:21:26 +00:00
parent b4099e45aa
commit 5317ae2227

View File

@ -41,7 +41,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction
*/
protected function createSavePoint($savepoint)
{
$query = 'SAVEPOINT '.$savepoint;
$query = 'SAVEPOINT ' . $savepoint;
return $this->conn->execute($query);
}
@ -66,7 +66,7 @@ class Doctrine_Transaction_Oracle extends Doctrine_Transaction
*/
protected function rollbackSavePoint($savepoint)
{
$query = 'ROLLBACK TO SAVEPOINT '.$savepoint;
$query = 'ROLLBACK TO SAVEPOINT ' . $savepoint;
return $this->conn->execute($query);
}