bindValue() public method
Binds a value to a parameter.
public $this bindValue ( $name, $value, $dataType = null ) | ||
---|---|---|
$name | string|integer |
Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form |
$value | mixed |
The value to bind to the parameter |
$dataType | integer |
SQL data type of the parameter. If null, the type is determined by the PHP type of the value. |
return | $this |
The current command being executed |
Please login to continue.