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
44b70057
Commit
44b70057
authored
Jun 26, 2014
by
Robbert van den Bogerd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adapt and move comment to parent class "Statement"
parent
568dc3c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
13 deletions
+5
-13
MysqliStatement.php
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
+1
-12
Statement.php
lib/Doctrine/DBAL/Driver/Statement.php
+4
-1
No files found.
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
View file @
44b70057
...
...
@@ -146,18 +146,7 @@ class MysqliStatement implements \IteratorAggregate, Statement
}
/**
* Binds a value to a corresponding positional placeholder in the SQL statement that was used to prepare
* the statement.
* The named parameter are not natively supported by the mysqli driver, use executeQuery(), fetchAll(),
* fetchArray(), fetchColumn(), fetchAssoc() methods to have the named parameter emulated by doctrine.
*
* @param mixed $param Parameter identifier. For a prepared statement using named placeholders,
* this will be a parameter name of the form :name. For a prepared statement
* using question mark placeholders, this will be the 1-indexed position of the parameter.
* @param mixed $value The value to bind to the parameter.
* @param integer $type Explicit data type for the parameter using the PDO::PARAM_* constants.
*
* @return boolean TRUE on success or FALSE on failure.
* {@inheritdoc}
*/
public
function
bindValue
(
$param
,
$value
,
$type
=
null
)
{
...
...
lib/Doctrine/DBAL/Driver/Statement.php
View file @
44b70057
...
...
@@ -33,9 +33,12 @@ namespace Doctrine\DBAL\Driver;
interface
Statement
extends
ResultStatement
{
/**
* Binds a value to a corresponding named or positional
* Binds a value to a corresponding named
(not supported by mysqli driver, see comment below)
or positional
* placeholder in the SQL statement that was used to prepare the statement.
*
* As mentioned above, the named parameters are not natively supported by the mysqli driver, use executeQuery(),
* fetchAll(), fetchArray(), fetchColumn(), fetchAssoc() methods to have the named parameter emulated by doctrine.
*
* @param mixed $param Parameter identifier. For a prepared statement using named placeholders,
* this will be a parameter name of the form :name. For a prepared statement
* using question mark placeholders, this will be the 1-indexed position of the parameter.
...
...
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