I've just moved on from using mysql to mysqli extension in PHP.
I've come across two ways of doing the same thing (multiple update queries), what are the pros/cons of each? Should I be using one or the other or something else entirely?
Prepared statement in a loop:
//prepare statement
foreach(whatever){
//execute statement
}
or
Multi-query:
foreach(whatever){
//build many queries into a single string
}
multi_query(long string)
I know that prepared statements offer better security. When using mysql in PHP I've heard its best to avoid using UPDATE statements in a loop - isn't executing a mysqli prepared statement in a loop the same thing by another name?
If for some reason you can't update all targeted records with just a single mysql update statement to avoid the need for this this PHP loop altogether, it's perfectly fine reusing this same
update
mysqli statement object in a loop.Style and resource-wise, reusing your parameterized statement is best rather than constantly recreating it. By reusing it, all you're doing after the initial
bind_param
call is re-assigning the value of the bound PHP variables on each iteration, then simply re-executing
(See:mysqli_stmt->execute
Example #1 Object oriented style).Remember, in your
WHERE
clause, you'd just have another PHP variable-assigned parameter likeWHERE (recordID = ?)
to iterate over.It takes extra resources to initially set up each parameterized statement, so multiple parameterized statements should be reserved for passing in multiple unrelated statements or queries. Also, it does not appear that PHP's
multi queries
functions and methods support parameterization at all anyway.