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
4f535bb4
Commit
4f535bb4
authored
May 09, 2013
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'DBAL-501' into 2.3
parents
faacbe7f
352729a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
184 additions
and
9 deletions
+184
-9
SQLParserUtils.php
lib/Doctrine/DBAL/SQLParserUtils.php
+43
-9
SQLParserUtilsException.php
lib/Doctrine/DBAL/SQLParserUtilsException.php
+43
-0
SQLParserUtilsTest.php
tests/Doctrine/Tests/DBAL/SQLParserUtilsTest.php
+98
-0
No files found.
lib/Doctrine/DBAL/SQLParserUtils.php
View file @
4f535bb4
...
...
@@ -80,7 +80,8 @@ class SQLParserUtils
* @param string $query The SQL query to execute.
* @param array $params The parameters to bind to the query.
* @param array $types The types the previous parameters are in.
*
*
* @throws SQLParserUtilsException
* @return array
*/
static
public
function
expandListParameters
(
$query
,
$params
,
$types
)
...
...
@@ -103,7 +104,7 @@ class SQLParserUtils
$arrayPositions
[
$name
]
=
false
;
}
if
((
!
$arrayPositions
&&
$isPositional
)
||
(
count
(
$params
)
!=
count
(
$types
))
)
{
if
((
!
$arrayPositions
&&
$isPositional
))
{
return
array
(
$query
,
$params
,
$types
);
}
...
...
@@ -130,7 +131,9 @@ class SQLParserUtils
$types
=
array_merge
(
array_slice
(
$types
,
0
,
$needle
),
array_fill
(
0
,
$count
,
$types
[
$needle
]
-
Connection
::
ARRAY_PARAM_OFFSET
),
// array needles are at PDO::PARAM_* + 100
$count
?
array_fill
(
0
,
$count
,
$types
[
$needle
]
-
Connection
::
ARRAY_PARAM_OFFSET
)
:
// array needles are at PDO::PARAM_* + 100
array
(),
array_slice
(
$types
,
$needle
+
1
)
);
...
...
@@ -150,16 +153,16 @@ class SQLParserUtils
$paramsOrd
=
array
();
foreach
(
$paramPos
as
$pos
=>
$paramName
)
{
$paramLen
=
strlen
(
$paramName
)
+
1
;
$value
=
$params
[
$paramName
]
;
$paramLen
=
strlen
(
$paramName
)
+
1
;
$value
=
static
::
extractParam
(
$paramName
,
$params
,
true
)
;
if
(
!
isset
(
$arrayPositions
[
$paramName
]))
{
if
(
!
isset
(
$arrayPositions
[
$paramName
])
&&
!
isset
(
$arrayPositions
[
':'
.
$paramName
])
)
{
$pos
+=
$queryOffset
;
$queryOffset
-=
(
$paramLen
-
1
);
$paramsOrd
[]
=
$value
;
$typesOrd
[]
=
$types
[
$paramName
]
;
$typesOrd
[]
=
static
::
extractParam
(
$paramName
,
$types
,
false
,
\PDO
::
PARAM_STR
)
;
$query
=
substr
(
$query
,
0
,
$pos
)
.
'?'
.
substr
(
$query
,
(
$pos
+
$paramLen
));
continue
;
}
...
...
@@ -168,7 +171,7 @@ class SQLParserUtils
foreach
(
$value
as
$val
)
{
$paramsOrd
[]
=
$val
;
$typesOrd
[]
=
$types
[
$paramName
]
-
Connection
::
ARRAY_PARAM_OFFSET
;
$typesOrd
[]
=
static
::
extractParam
(
$paramName
,
$types
,
false
)
-
Connection
::
ARRAY_PARAM_OFFSET
;
}
$pos
+=
$queryOffset
;
...
...
@@ -197,4 +200,35 @@ class SQLParserUtils
return
$fragments
[
1
];
}
/**
* @param string $paramName The name of the parameter (without a colon in front)
* @param array $paramsOrTypes A hash of parameters or types
* @param bool $isParam
* @param mixed $defaultValue An optional default value. If omitted, an exception is thrown
*
* @throws SQLParserUtilsException
* @return mixed
*/
static
private
function
extractParam
(
$paramName
,
$paramsOrTypes
,
$isParam
,
$defaultValue
=
null
)
{
if
(
isset
(
$paramsOrTypes
[
$paramName
]))
{
return
$paramsOrTypes
[
$paramName
];
}
// Hash keys can be prefixed with a colon for compatibility
if
(
isset
(
$paramsOrTypes
[
':'
.
$paramName
]))
{
return
$paramsOrTypes
[
':'
.
$paramName
];
}
if
(
null
!==
$defaultValue
)
{
return
$defaultValue
;
}
if
(
$isParam
)
{
throw
SQLParserUtilsException
::
missingParam
(
$paramName
);
}
throw
SQLParserUtilsException
::
missingType
(
$paramName
);
}
}
lib/Doctrine/DBAL/SQLParserUtilsException.php
0 → 100644
View file @
4f535bb4
<?php
/*
* $Id: $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace
Doctrine\DBAL
;
/**
* Doctrine\DBAL\ConnectionException
*
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @since 2.4
* @author Lars Strojny <lars@strojny.net>
*/
class
SQLParserUtilsException
extends
DBALException
{
public
static
function
missingParam
(
$paramName
)
{
return
new
self
(
sprintf
(
'Value for :%1$s not found in params array. Params array key should be "%1$s"'
,
$paramName
));
}
public
static
function
missingType
(
$typeName
)
{
return
new
self
(
sprintf
(
'Value for :%1$s not found in types array. Types array key should be "%1$s"'
,
$typeName
));
}
}
tests/Doctrine/Tests/DBAL/SQLParserUtilsTest.php
View file @
4f535bb4
...
...
@@ -238,6 +238,55 @@ SQLDATA
array
(),
array
()
),
array
(
"SELECT * FROM Foo WHERE foo IN (:foo) OR bar = :bar OR baz = :baz"
,
array
(
'foo'
=>
array
(
1
,
2
),
'bar'
=>
'bar'
,
'baz'
=>
'baz'
),
array
(
'foo'
=>
Connection
::
PARAM_INT_ARRAY
,
'baz'
=>
'string'
),
'SELECT * FROM Foo WHERE foo IN (?, ?) OR bar = ? OR baz = ?'
,
array
(
1
,
2
,
'bar'
,
'baz'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_STR
,
'string'
)
),
array
(
"SELECT * FROM Foo WHERE foo IN (:foo) OR bar = :bar"
,
array
(
'foo'
=>
array
(
1
,
2
),
'bar'
=>
'bar'
),
array
(
'foo'
=>
Connection
::
PARAM_INT_ARRAY
),
'SELECT * FROM Foo WHERE foo IN (?, ?) OR bar = ?'
,
array
(
1
,
2
,
'bar'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_STR
)
),
// Params/types with colons
array
(
"SELECT * FROM Foo WHERE foo = :foo OR bar = :bar"
,
array
(
':foo'
=>
'foo'
,
':bar'
=>
'bar'
),
array
(
':foo'
=>
\PDO
::
PARAM_INT
),
'SELECT * FROM Foo WHERE foo = ? OR bar = ?'
,
array
(
'foo'
,
'bar'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_STR
)
),
array
(
"SELECT * FROM Foo WHERE foo = :foo OR bar = :bar"
,
array
(
':foo'
=>
'foo'
,
':bar'
=>
'bar'
),
array
(
':foo'
=>
\PDO
::
PARAM_INT
,
'bar'
=>
\PDO
::
PARAM_INT
),
'SELECT * FROM Foo WHERE foo = ? OR bar = ?'
,
array
(
'foo'
,
'bar'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_INT
)
),
array
(
"SELECT * FROM Foo WHERE foo IN (:foo) OR bar = :bar"
,
array
(
':foo'
=>
array
(
1
,
2
),
':bar'
=>
'bar'
),
array
(
'foo'
=>
Connection
::
PARAM_INT_ARRAY
),
'SELECT * FROM Foo WHERE foo IN (?, ?) OR bar = ?'
,
array
(
1
,
2
,
'bar'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_STR
)
),
array
(
"SELECT * FROM Foo WHERE foo IN (:foo) OR bar = :bar"
,
array
(
'foo'
=>
array
(
1
,
2
),
'bar'
=>
'bar'
),
array
(
':foo'
=>
Connection
::
PARAM_INT_ARRAY
),
'SELECT * FROM Foo WHERE foo IN (?, ?) OR bar = ?'
,
array
(
1
,
2
,
'bar'
),
array
(
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_INT
,
\PDO
::
PARAM_STR
)
),
);
}
...
...
@@ -258,4 +307,53 @@ SQLDATA
$this
->
assertEquals
(
$expectedParams
,
$params
,
"Params dont match"
);
$this
->
assertEquals
(
$expectedTypes
,
$types
,
"Types dont match"
);
}
public
static
function
dataQueryWithMissingParameters
()
{
return
array
(
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(
'other'
=>
'val'
),
array
(),
),
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(),
array
(),
),
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(),
array
(
'param'
=>
Connection
::
PARAM_INT_ARRAY
),
),
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(),
array
(
':param'
=>
Connection
::
PARAM_INT_ARRAY
),
),
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(),
array
(
'bar'
=>
Connection
::
PARAM_INT_ARRAY
),
),
array
(
"SELECT * FROM foo WHERE bar = :param"
,
array
(
'bar'
=>
'value'
),
array
(
'bar'
=>
Connection
::
PARAM_INT_ARRAY
),
),
);
}
/**
* @dataProvider dataQueryWithMissingParameters
*/
public
function
testExceptionIsThrownForMissingParam
(
$query
,
$params
,
$types
=
array
())
{
$this
->
setExpectedException
(
'Doctrine\DBAL\SQLParserUtilsException'
,
'Value for :param not found in params array. Params array key should be "param"'
);
SQLParserUtils
::
expandListParameters
(
$query
,
$params
,
$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