mysqli&绑定语句,2031:语句中的参数没有数据

时间:2011-04-14 18:39:07

标签: php mysqli prepared-statement

这是我的代码,不起作用,不知道原因:

$sql = `INSERT INTO `_translations` (id, module, item_id, name_id, output, language) VALUES (?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE output = ?`
$stmt = mysqli_prepare($this->connection, $sql);
$params = array($stmt, $types);
foreach($array as $k=>&$v){
    $params[] =& $v;
}
// this call is update call, therefore parameters are merged
if($update && $_update) $params = array_merge($params, $_update);
call_user_func_array('mysqli_stmt_bind_param', $params); # i think the problem is in this line..
if(mysqli_stmt_execute($stmt)){
    if($this->transaction){ $this->affected++; }
    else{ $this->affected = 1; }
}else{ 
    $error = mysqli_stmt_error($stmt); 
    $errno = mysqli_stmt_errno($stmt);
    die("{$sql}<br/><pre>".var_export($params, true)."</pre><br/>{$errno}: {$error}");
}

die()导致:

INSERT INTO `_translations` (id, module, item_id, name_id, output, language) VALUES (?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE output = ?
array (
  0 => 
  mysqli_stmt::__set_state(array(
     'affected_rows' => NULL,
     'insert_id' => NULL,
     'num_rows' => NULL,
     'param_count' => NULL,
     'field_count' => NULL,
     'errno' => NULL,
     'error' => NULL,
     'sqlstate' => NULL,
     'id' => NULL,
  )),
  1 => 'isissss',
  2 => '',
  3 => 'seo',
  4 => '',
  5 => 'keywords',
  6 => 'tesoutput',
  7 => 'en',
  8 => 'tesoutput',
)

2031: No data supplied for parameters in prepared statement

嗯,类型计数等于参数,一切都应该正常,但事实并非如此。由于同样的功能适用于简单插入,我知道它有效......如果我需要更多数据,请随时询问。

任何解决方案?

提前致谢!

更新#1:
这是$ array,$ types和$ update打印输出 附:在设置所有这三个变量之前有一个链,但它们确实包含了所需的内容!

// $array
array(6) {
  ["id"]=>
  string(0) ""
  ["module"]=>
  string(3) "seo"
  ["item_id"]=>
  string(0) ""
  ["name_id"]=>
  string(8) "keywords"
  ["output"]=>
  string(9) "tesoutput"
  ["language"]=>
  string(2) "en"
}
// $types
string(7) "isissss"
// $update
array(1) {
  [0]=>
  string(9) "tesoutput"
}

我已经认为问题可能在$types字符串中没有加工$array值类型,因为所有值都是字符串。但是,我不确定,因为在没有更新的情况下进行插入时,即使这些是字符串,也可以正常工作。

更新#2:
它看起来像是与版本相关的错误,驱动程序错误 - http://bugs.php.net/bug.php?id=43568 ...任何人都设法让> 5.2mysqlnd一起工作?并且,是的,在localhost上我正在使用默认的5.2.6驱动程序运行mysql,在生产服务器上,PHP运行的版本为5.3.5 mysqlnd

1 个答案:

答案 0 :(得分:3)

在对http://bugs.php.net/bug.php?id=43568进行了一些研究之后,我设法通过替换来解决问题:

foreach($array as $k=>&$v){
    $params[] =& $v;
}
if($update && $_update) $params = array_merge($params, $_update); # this is the actual line, that I've replaced

使用:

// did a little housekeeping too
foreach($array as $k=>&$v) $params[] =& $v;
if($update && $_update) foreach($_update as $kk => $vv) $params[] =& $v; # instead of merging, I'm populating values the hard way.

嗯,有趣的是5.2如何允许常量值绑定,而5.3则不允许。无论如何,我很高兴我已经解决了这个问题,我希望将来可以帮助其他人。

这实际上解释了为什么insert无论版本如何都能正常工作......这些值会从开始使用参考变量填充。