Skip to content

Commit

Permalink
[BC] Removed support for PDO::PARAM_INPUT_OUTPUT in Statement::bindPa…
Browse files Browse the repository at this point in the history
…ram()
  • Loading branch information
morozov committed Mar 19, 2018
1 parent 064e9db commit fedca0b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Doctrine/DBAL/Driver/Statement.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ public function bindValue($param, $value, $type = ParameterType::STRING);
* question mark placeholders, this will be the 1-indexed position of the parameter.
* @param mixed $variable Name of the PHP variable to bind to the SQL statement parameter.
* @param int|null $type Explicit data type for the parameter using the {@link \Doctrine\DBAL\ParameterType}
* constants. To return an INOUT parameter from a stored procedure, use the bitwise
* OR operator to set the PDO::PARAM_INPUT_OUTPUT bits for the data_type parameter.
* constants.
* @param int|null $length You must specify maxlength when using an OUT bind
* so that PHP allocates enough memory to hold the returned value.
*
Expand Down

0 comments on commit fedca0b

Please sign in to comment.