Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
707f8015
Commit
707f8015
authored
Apr 18, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
be014398
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
Firebird.php
lib/Doctrine/Transaction/Firebird.php
+2
-2
Mysql.php
lib/Doctrine/Transaction/Mysql.php
+3
-3
Pgsql.php
lib/Doctrine/Transaction/Pgsql.php
+3
-3
No files found.
lib/Doctrine/Transaction/Firebird.php
View file @
707f8015
...
...
@@ -41,7 +41,7 @@ class Doctrine_Transaction_Firebird extends Doctrine_Transaction
*/
protected
function
createSavePoint
(
$savepoint
)
{
$query
=
'SAVEPOINT '
.
$savepoint
;
$query
=
'SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
@@ -54,7 +54,7 @@ class Doctrine_Transaction_Firebird extends Doctrine_Transaction
*/
protected
function
releaseSavePoint
(
$savepoint
)
{
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
lib/Doctrine/Transaction/Mysql.php
View file @
707f8015
...
...
@@ -41,7 +41,7 @@ class Doctrine_Transaction_Mysql extends Doctrine_Transaction
*/
protected
function
createSavePoint
(
$savepoint
)
{
$query
=
'SAVEPOINT '
.
$savepoint
;
$query
=
'SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
@@ -54,7 +54,7 @@ class Doctrine_Transaction_Mysql extends Doctrine_Transaction
*/
protected
function
releaseSavePoint
(
$savepoint
)
{
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
@@ -67,7 +67,7 @@ class Doctrine_Transaction_Mysql extends Doctrine_Transaction
*/
protected
function
rollbackSavePoint
(
$savepoint
)
{
$query
=
'ROLLBACK TO SAVEPOINT '
.
$savepoint
;
$query
=
'ROLLBACK TO SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
lib/Doctrine/Transaction/Pgsql.php
View file @
707f8015
...
...
@@ -42,7 +42,7 @@ class Doctrine_Transaction_Pgsql extends Doctrine_Transaction
*/
protected
function
createSavePoint
(
$savepoint
)
{
$query
=
'SAVEPOINT '
.
$savepoint
;
$query
=
'SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
@@ -55,7 +55,7 @@ class Doctrine_Transaction_Pgsql extends Doctrine_Transaction
*/
protected
function
releaseSavePoint
(
$savepoint
)
{
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
$query
=
'RELEASE SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
@@ -68,7 +68,7 @@ class Doctrine_Transaction_Pgsql extends Doctrine_Transaction
*/
protected
function
rollbackSavePoint
(
$savepoint
)
{
$query
=
'ROLLBACK TO SAVEPOINT '
.
$savepoint
;
$query
=
'ROLLBACK TO SAVEPOINT '
.
$savepoint
;
return
$this
->
conn
->
execute
(
$query
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment