vote up 3 vote down star
1

What is the difference between bindParam and bindValue for PDO in PHP?

http://www.php.net/manual/en/pdostatement.bindparam.php

http://www.php.net/manual/en/pdostatement.bindvalue.php

flag

80% accept rate

2 Answers

vote up 5 vote down check

The answer is in the documentation for bindParam:

Unlike PDOStatement::bindValue(), the variable is bound as a reference and will only be evaluated at the time that PDOStatement::execute() is called.

link|flag
thanks, have missed that – koen Jul 24 at 20:18
vote up 2 vote down

Here are some I can think about :

  • With bindParam, you can only pass variables ; not values
  • with bindValue, you can pass both (values, obviously, and variables)
  • bindParam works only with variables because it allows parameters to be given as input/output, by "reference" (and a value is not a valid "reference" in PHP) : it is useful with drivers that (quoting the manual) :

support the invocation of stored procedures that return data as output parameters, and some also as input/output parameters that both send in data and are updated to receive it.

With some DB engines, stored procedures can have parameters that can be used for both input (giving a value from PHP to the procedure) and ouput (returning a value from the stored proc to PHP) ; to bind those parameters, you've got to use bindParam, and not bindValue.

link|flag
thanks, can only accept one though – koen Jul 24 at 20:17
you're welcome :-) (don't worry about that ^^ ) – Pascal MARTIN Jul 24 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.