Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My code to generate the SQL statement works fine - however I run into a hiccup when generating the string for $stmt->bind_param. Code is as follows:

$stmt = $mysqli->stmt_init(); if ($stmt->prepare ($sql)) { $bind_types = '"'; $bind_values = '';

    if ($action == 'insert' || $action == 'update') {
        reset ($array);
        foreach ($array as $key => $value) {
            if (is_string ($value)) { $type = 's'; } else if (is_int ($value)) { $type = 'i'; } else if (is_float ($value)) { $type = 'd'; } else { die ('Cannot determine type for ' . $key . ' => ' . $value . ''); }
            $bind_types .= $type;
            $bind_values .= $value . ', ';
            //$stmt->bind_param ($type, $value);
        }
    }

    if ($action == 'update' || $action == 'delete') {
        if (is_string ($id_value)) { $type = 's'; } else if (is_int ($id_value)) { $type = 'i'; } else if (is_float ($id_value)) { $type = 'd'; } else { die ('Cannot determine type for ' . $id_column . ' => ' . $id_value . ''); }
        $bind_types .= $type;
        $bind_values .= $id_value . ', ';
        //$stmt->bind_param ($type, $id_value);
    }

    $bind_types .= '"';

    $bind_values = substr ($bind_values, 0, -2);

    echo $bind_types  . ', ' . $bind_values;

    $stmt->bind_param ($bind_types, $bind_values);
    $stmt->execute();

}

The formatting of that got messed up. I apologize if its hard to read.

I am getting the following error:

"Warning: mysqli_stmt::bind_param() [mysqli-stmt.bind-param]: Number of elements in type definition string doesn't match number of bind variables in ... "

Any ideas?

share|improve this question
So much mysql_ and mysqli in the last hour... use PDO instead. – Waleed Khan Jul 18 '12 at 2:32
I was looking into it. However the arguments for using mysqli vs. PDO are good on both sides. I figured mysqli was the way to roll. Maybe not. – Luke Pittman Jul 18 '12 at 2:33
I wasn't under the impression that there was much of an argument, but I will go view said arguments now. – Waleed Khan Jul 18 '12 at 2:35

2 Answers

up vote 2 down vote accepted

I would highly advise to use PDO as you can do it easily. If you want to do it in mysqli it is more complicated since you can't easily bind them dynamically. To bind them dynamically look at this ugly hack

$bind_values= explode(',', $bind_values);
call_user_func_array(array($stmt, 'bind_param'), makeValuesReferenced($bind_values));
$stmt->execute();

function makeValuesReferenced(&$arr){ 
    $refs = array(); 
    foreach($arr as $key => $value) 
        $refs[$key] = &$arr[$key]; 
    return $refs; 

}
share|improve this answer
I am looking at PDO right now and will most likely migrate this test code over to that to test it out. Additionally you actually answered my question, so thanks. – Luke Pittman Jul 18 '12 at 2:48

Your call to bind_param is wrong: it should be:

bind_param($types, $value1, $value2, $value3 ...);

where each of those values is an actual variable.

share|improve this answer
I understand that. If you look closer at the code you'll see loops generate $bind_types and $bind_values. Then I am using those in the bind_param call. I suspect that still may be the problem although the output of those two strings is correct. – Luke Pittman Jul 18 '12 at 2:40
$bind_values is a string, and bind_param does not take a string as the second parameter. – Waleed Khan Jul 18 '12 at 2:41
I suspected that. Damnit. – Luke Pittman Jul 18 '12 at 2:42
PDO lets you bind values individually... tempted? – Waleed Khan Jul 18 '12 at 2:42
Haha - yes. I just noticed that. – Luke Pittman Jul 18 '12 at 2:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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