vote up 5 vote down star
3

How would you write a prepared MySQL statement in PHP that takes a differing number of arguments each time. An example such query is:

SELECT age, name FROM people WHERE id IN (12, 45, 65, 33)

The IN CLAUSE will have a different number of id's each time it is run.

I have two possible solutions in my mind but want to see if there is a better way.

Possible Solution 1 Make the statement accept 100 variables and fill the rest with dummy values guaranteed not to be in the table, make multiple calls for more than 100 values.

Possible Solution 2 Don't use a prepared statement, build and run the query checking stringently for possible injection attacks.

flag
I suspect I would avoid both of the solutions you suggest. Prepared statements make securing your code far easier. And your first solution seems pretty inefficient and wasteful if you have a small list. – Zoredache Nov 29 '08 at 9:40
I agree I thought those ideas might stimulate others minds. :) – smarthall Nov 29 '08 at 12:17

5 Answers

vote up 6 vote down check

I can of a couple solutions.

One solution might be to create a temporary table. Do an insert into the table for each parameter that you would have in the in clause. Then do a simple join against your temporary table.

Another method might be to do something like this.

$dbh=new PDO($dbConnect, $dbUser, $dbPass);
$parms=array(12, 45, 65, 33);
$parmcount=count($parms);   // = 4
$inclause=implode(',',array_fill(0,$parmcount,'?')); // = ?,?,?,?
$sql='SELECT age, name FROM people WHERE id IN (%s)';
$preparesql=sprintf($sql,$inclause);  // = example statement used in the question
$st=$dbh->prepare($preparesql);
$st->execute($parms);

I suspect, but have no proof, that the first solution might be better for larger lists, and the later would work for smaller lists.

link|flag
i like your second suggestion. do it and forget about it until performance is an issue. at that point it might be worth investigating the first option. – benlumley Nov 29 '08 at 9:46
If only I'd have thought of that! Your first solution sounds like the exact thing I was looking for. – smarthall Nov 29 '08 at 12:16
I've used pattern #2 frequently. Perl's DBI has a prepare_cached() function, so if you queries with similar numbers of placeholders, it will reuse statement handles. Not sure about PHP though.. – Gary Richardson Nov 29 '08 at 23:33
vote up 0 vote down

Please take #2 off the table. Prepared statements are the only way you should consider protecting yourself against SQL injection.

What you can do, however, is generate a dynamic set of binding variables. i.e. don't make 100 if you need 7 (or 103).

link|flag
what? that doesn't make sense. He is using prepared statements, but he's dynamically setting the number of placeholders. – Gary Richardson Nov 29 '08 at 23:35
In scenario #1, he was statically defining the query to take 100 parameters, in #2, he was not using a prepared statement. My suggestion was to dynamically build the query with bindings, which is the same thing you're saying. – Dustin Nov 29 '08 at 23:46
whoops. I was reading #2 from stackoverflow.com/questions/327274/…. Sorry! – Gary Richardson Dec 2 '08 at 6:59
vote up 2 vote down

decent sql wrappers support binding to array values. i.e.

$sql = "... WHERE id IN (?)";
$values = array(1, 2, 3, 4);
$result = $dbw -> prepare ($sql, $values) -> execute ();
link|flag
I actually do not know about any native PHP database access library for MySQL (neither mysql, mysqli nor PDO) that allows for binding parameters of the array type. – Stefan Gehrig Nov 29 '08 at 10:09
back when i was developing in php few years ago, adodb did a really good job for me. i think you should check it out. – Eimantas Nov 29 '08 at 10:14
Any framework that does this is doing it by expanding the list and interpolating it into the SQL query before the prepare(). It's not the same as bound parameters. – Bill Karwin Nov 29 '08 at 17:53
vote up 1 vote down

If you're only using integer values in your IN clause, there's nothing that argues against constructing your query dynamically without the use of SQL parameters.

function convertToInt(&$value, $key)
{
    $value = intval($value);
}

$ids = array('12', '45', '65', '33');
array_walk($ids, 'convertToInt');
$sql = 'SELECT age, name FROM people WHERE id IN (' . implode(', ', $ids) . ')';
// $sql will contain  SELECT age, name FROM people WHERE id IN (12, 45, 65, 33)

But without doubt the solution here is the more general approach to this problem.

link|flag
vote up 0 vote down

i got my answer from: http://bugs.php.net/bug.php?id=43568 this is my working solution to my problem. Now i can dynamically use as many parameters as i want. They will be the same number as i have in an array or as in this case I am passing the ids from the last query ( which found all the ids where email = 'johndoe@gmail.com') to the dynamic query to get all the info about each of these id no matter how many i end up needing.

$paramtype=implode('',array_fill(0,$NumofIds,'i')); // = ii
//make the array to build the bind_param function
$idAr[] = $paramtype; //'ii' or how ever many ?'s we have
while($statement->fetch()){ //this is my last query i am getting the id out of
$idAr[] = $id; }
//now this array looks like this array:
//$idAr = array('ii', 128, 237);

$query = "SELECT id,studentid,book_title,date FROM contracts WHERE studentid IN ($parameters)";
$statement = $db->prepare($query);
//build the bind_param function
call_user_func_array (array($statement, "bind_param"), $idAr);
//here is what we used to do before making it dynamic
//statement->bind_param($paramtype,$v1,$v2);
$statement->execute();
link|flag

Your Answer

Get an OpenID
or

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