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
9e29fe09
Commit
9e29fe09
authored
Nov 11, 2014
by
Marco Pivetta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#722 - `Doctrine\DBAL\Connection#delete()` refuses non-empty criteria
parent
ba9cdd26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
18 deletions
+11
-18
Connection.php
lib/Doctrine/DBAL/Connection.php
+11
-18
No files found.
lib/Doctrine/DBAL/Connection.php
View file @
9e29fe09
...
...
@@ -20,6 +20,7 @@
namespace
Doctrine\DBAL
;
use
Doctrine\DBAL\Driver\ServerInfoAwareConnection
;
use
Doctrine\DBAL\Exception\InvalidArgumentException
;
use
PDO
;
use
Closure
;
use
Exception
;
...
...
@@ -570,36 +571,28 @@ class Connection implements DriverConnection
* @param array $types The types of identifiers.
*
* @return integer The number of affected rows.
*/
public
function
delete
(
$tableExpression
,
array
$identifier
,
array
$types
=
array
())
{
$this
->
connect
();
return
$this
->
executeUpdate
(
'DELETE FROM '
.
$tableExpression
.
$this
->
getWhereSql
(
$identifier
),
array_values
(
$identifier
),
is_string
(
key
(
$types
))
?
$this
->
extractTypeValues
(
$identifier
,
$types
)
:
$types
);
}
/**
* @param array $identifier An associative array containing column-value pairs.
*
* @
return string
* @
throws InvalidArgumentException
*/
p
rivate
function
getWhereSql
(
array
$identifier
)
p
ublic
function
delete
(
$tableExpression
,
array
$identifier
,
array
$types
=
array
()
)
{
if
(
empty
(
$identifier
))
{
return
''
;
throw
InvalidArgumentException
::
fromEmptyCriteria
()
;
}
$this
->
connect
();
$criteria
=
array
();
foreach
(
array_keys
(
$identifier
)
as
$columnName
)
{
$criteria
[]
=
$columnName
.
' = ?'
;
}
return
' WHERE '
.
implode
(
' AND '
,
$criteria
);
return
$this
->
executeUpdate
(
'DELETE FROM '
.
$tableExpression
.
' WHERE '
.
implode
(
' AND '
,
$criteria
),
array_values
(
$identifier
),
is_string
(
key
(
$types
))
?
$this
->
extractTypeValues
(
$identifier
,
$types
)
:
$types
);
}
/**
...
...
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