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
aad4ca7f
Commit
aad4ca7f
authored
Dec 22, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix documentation
parent
ba4ab893
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
ResultStatement.php
lib/Doctrine/DBAL/Driver/ResultStatement.php
+14
-7
No files found.
lib/Doctrine/DBAL/Driver/ResultStatement.php
View file @
aad4ca7f
...
...
@@ -45,22 +45,27 @@ interface ResultStatement extends \Traversable
/**
* Sets the fetch mode to use while iterating this statement.
*
* @param integer $fetchMode
* @param integer $fetchMode
The fetch mode must be one of the PDO::FETCH_* constants.
* @param mixed $arg2
* @param mixed $arg3
*
* @return boolean
*
* @see PDO::FETCH_* constants.
*/
public
function
setFetchMode
(
$fetchMode
,
$arg2
=
null
,
$arg3
=
null
);
/**
*
@see Query::HYDRATE_* constants
*
Returns the next row of a result set.
*
* @param integer|null $fetchMode Controls how the next row will be returned to the caller.
* This value must be one of the Query::HYDRATE_* constants,
* defaulting to Query::HYDRATE_BOTH
* The value must be one of the PDO::FETCH_* constants,
* defaulting to PDO::FETCH_BOTH.
*
* @return mixed The return value of this method on success depends on the fetch mode. In all cases, FALSE is
* returned on failure.
*
* @
return mixed
* @
see PDO::FETCH_* constants.
*/
public
function
fetch
(
$fetchMode
=
null
);
...
...
@@ -68,10 +73,12 @@ interface ResultStatement extends \Traversable
* Returns an array containing all of the result set rows.
*
* @param integer|null $fetchMode Controls how the next row will be returned to the caller.
* Th
is value must be one of the Query::HYDRATE
_* constants,
* defaulting to
Query::HYDRATE_BOTH
* Th
e value must be one of the PDO::FETCH
_* constants,
* defaulting to
PDO::FETCH_BOTH.
*
* @return array
*
* @see PDO::FETCH_* constants.
*/
public
function
fetchAll
(
$fetchMode
=
null
);
...
...
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