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
a6d3d162
Commit
a6d3d162
authored
Sep 09, 2016
by
Marco Pivetta
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/#2500-#2497-return-false-from-mysqli-statement-when-nothing-is-fetched'
Close #2500 Close #2497
parents
8144e267
f90c0b07
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
MysqliStatement.php
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
+3
-3
DataAccessTest.php
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
+7
-0
No files found.
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
View file @
a6d3d162
...
...
@@ -242,7 +242,7 @@ class MysqliStatement implements \IteratorAggregate, Statement
{
$values
=
$this
->
_fetch
();
if
(
null
===
$values
)
{
return
null
;
return
false
;
}
if
(
false
===
$values
)
{
...
...
@@ -292,7 +292,7 @@ class MysqliStatement implements \IteratorAggregate, Statement
$rows
[]
=
$row
;
}
}
else
{
while
((
$row
=
$this
->
fetch
(
$fetchMode
))
!==
null
)
{
while
((
$row
=
$this
->
fetch
(
$fetchMode
))
!==
false
)
{
$rows
[]
=
$row
;
}
}
...
...
@@ -306,7 +306,7 @@ class MysqliStatement implements \IteratorAggregate, Statement
public
function
fetchColumn
(
$columnIndex
=
0
)
{
$row
=
$this
->
fetch
(
PDO
::
FETCH_NUM
);
if
(
null
===
$row
)
{
if
(
false
===
$row
)
{
return
false
;
}
...
...
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
View file @
a6d3d162
...
...
@@ -237,6 +237,13 @@ class DataAccessTest extends \Doctrine\Tests\DbalFunctionalTestCase
$this
->
assertEquals
(
'foo'
,
$row
[
1
]);
}
public
function
testFetchNoResult
()
{
self
::
assertFalse
(
$this
->
_conn
->
executeQuery
(
'SELECT test_int FROM fetch_table WHERE test_int = ?'
,
[
-
1
])
->
fetch
()
);
}
public
function
testFetchAssoc
()
{
$sql
=
"SELECT test_int, test_string FROM fetch_table WHERE test_int = ? AND test_string = ?"
;
...
...
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