66

I often see code using bindParam or bindValue with PDO. Is simply passing arguments to execute frowned upon for any reason?

I understand that bindParam actually binds to the variables and that you can set the type of parameter being bound with both bind methods, but what if you are only inserting strings?

$query = "SELECT col1 FROM t1 WHERE col2 = :col2 AND col3 = :col3 AND col4 = :col4"; $pdo->bindValue(':col2', 'col2'); $pdo->bindValue(':col3', 'col3'); $pdo->bindValue(':col4', 'col4'); 

I often see the above, but personally I prefer:

$pdo->execute(array(':col2' => 'col2', ':col3' => 'col3', ':col4' => 'col4')); 

It is not as verbose and visually it makes more sense to me to have the inputs "going in" to the query together. However, I hardly ever see it used.

Is there a reason to prefer the bind methods over passing parameters to execute when you don't have to take advantage of the special behaviors of the former?

2
  • 1
    I think it's down to a matter of preference - I tend to prefer using bindValue and bindParam because I think the resulting code is easier to read. Commented Sep 12, 2012 at 16:16
  • 2
    It is indeed down to preference. If you don't require the ability fo force types (when you're only using strings), passing an array to execute() is quick and handy. Commented Sep 12, 2012 at 16:17

3 Answers 3

73

You might find bindParam used when you just want to bind a variable reference to a parameter in the query, but perhaps still need to do some manipulations on it and only want the value of the variable calculated at time of query execution. It also allows you to do more complex things like bind a parameter to a stored procedure call and have the returned value updated into the bound variable.

For more, see the bindParam documentation, bindValue documentation and execute documentation.

For example

$col1 = 'some_value'; $pdo->bindParam(':col1', $col1); $col1 = 'some_other_value'; $pdo->execute(); // would use 'some_other_value' for ':col1' parameter 

bindValue and passing an array to execute behave in much the same way as the parameter value is fixed at that point and SQL executed accordingly.

Following the same example above, but using bindValue

$col1 = 'some_value'; $pdo->bindValue(':col1', $col1); $col1 = 'some_other_value'; $pdo->execute(); // would use 'some_value' for ':col1' parameter 

When passing values directly in execute all values are treated as strings (even if integer value is provided). So if you need to enforce data types, you should always use bindValue or bindParam.

I think you might see bind* used more than execute(array) as many consider it to be better coding practice to explicitly define data types in parameter declarations.

Sign up to request clarification or add additional context in comments.

8 Comments

Hi, Mike. Out of interest could you elaborate on this? It's always interested me how passing variables to bindParam() works, as sometimes I get "Cannot pass variable by reference" errors, and not actually sure what that means why I think about it.
@ExplosionPills I meant explicit regarding data type. Sorry for confusion, I have updated my answer.
bindParam passes a variable by reference, which means the value itself is evaluated only when it's used (the query execution). This allows you to, for example, query in a loop, simply changing the variables, without binding over and over again.
Explicit data types being good practice is a good answer .. in theory .. however I rarely see that either. I think I'll stick to execute most of the time, personally.
MySQL accepts where number > '6', so when should we really need to convert parameter as an integer?
|
11

By passing the parameters along with the $pdo->execute() method, all values in the array will be passed, as PDO::PARAM_STR to the statement with the $pdo->bindParam() function.

The main difference that I can see now, is that with the $pdo->bindParam() function, you can define the data type passed along, using the PDO::PARAM_* constants as described in the PHP.net manual

1 Comment

But the data type list offered is quite limited
4

Simple, the value of bindParam may change but the value of bindValue can not change. Example:

$someVal=10; $someVal2=20; /* In bindParam, the value argument is not bound and will be changed if we change its value before execute. */ $ref->bindParam(':someCol',$someVal); $someVal=$someVal2; $ref->execute(); //someCol=20 /* In bindValue, the value argument is bound and never changed if we change its value before execute. */ $ref->bindValue(':someCol',$someVal); // here assignment is referral (&$someVal) $someVal=$someVal2; $ref->execute(); //someCol=10 

1 Comment

I think the OP was asking the difference between execute and bindParam not bindParam and bindValue but i just started using PDO and didnt know the difference

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.