adapt and move comment to parent class "Statement"

parent 568dc3c6
...@@ -146,18 +146,7 @@ class MysqliStatement implements \IteratorAggregate, Statement ...@@ -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 * {@inheritdoc}
* 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.
*/ */
public function bindValue($param, $value, $type = null) public function bindValue($param, $value, $type = null)
{ {
......
...@@ -33,9 +33,12 @@ namespace Doctrine\DBAL\Driver; ...@@ -33,9 +33,12 @@ namespace Doctrine\DBAL\Driver;
interface Statement extends ResultStatement 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. * 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, * @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 * 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. * using question mark placeholders, this will be the 1-indexed position of the parameter.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment