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
9862f45f
Commit
9862f45f
authored
Apr 18, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
another identifier quoting fix
parent
c5eb26c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
Transaction.php
lib/Doctrine/Transaction.php
+7
-5
No files found.
lib/Doctrine/Transaction.php
View file @
9862f45f
...
...
@@ -60,7 +60,7 @@ class Doctrine_Transaction extends Doctrine_Connection_Module
/**
* @var array $savepoints an array containing all savepoints
*/
p
ublic
$savePoints
=
array
();
p
rotected
$savePoints
=
array
();
/**
* getState
* returns the state of this connection
...
...
@@ -129,10 +129,12 @@ class Doctrine_Transaction extends Doctrine_Connection_Module
$ids
=
array
();
if
(
is_array
(
$deletes
[
count
(
$deletes
)
-
1
]
->
getTable
()
->
getIdentifier
()))
{
foreach
(
$deletes
as
$k
=>
$record
)
{
foreach
(
$deletes
as
$k
=>
$record
)
{
$cond
=
array
();
$ids
=
$record
->
obtainIdentifier
();
$query
=
'DELETE FROM '
.
$record
->
getTable
()
->
getTableName
()
.
' WHERE '
;
$query
=
'DELETE FROM '
.
$this
->
conn
->
quoteIdentifier
(
$record
->
getTable
()
->
getTableName
())
.
' WHERE '
;
foreach
(
array_keys
(
$ids
)
as
$id
){
$cond
[]
=
$id
.
' = ? '
;
...
...
@@ -147,10 +149,10 @@ class Doctrine_Transaction extends Doctrine_Connection_Module
$record
->
assignIdentifier
(
false
);
}
if
(
$record
instanceof
Doctrine_Record
)
{
$params
=
substr
(
str_repeat
(
"?, "
,
count
(
$ids
)),
0
,
-
2
);
$params
=
substr
(
str_repeat
(
'?, '
,
count
(
$ids
)),
0
,
-
2
);
$query
=
'DELETE FROM '
.
$
record
->
getTable
()
->
getTableName
(
)
.
$
this
->
conn
->
quoteIdentifier
(
$record
->
getTable
()
->
getTableName
()
)
.
' WHERE '
.
$record
->
getTable
()
->
getIdentifier
()
.
' IN('
.
$params
.
')'
;
...
...
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