当前位置:   article > 正文

mysql错误1064_MySQL 1064错误原因及解决办法

error occurred during create target metadata

MySQL 1064错误意思是说我的SQL语法错误,然后显示错误的具体位置。

查看待更新的内容,以及执行跟新的php语句。

6a3947235ebadd39afa4a6f37a68d48b.png

php语句如下:

if(!$handle= @fopen($fname, "r")) {echo "open $fname failed\n";exit;};

$str="";$count=0;

$ins="INSERT INTO pydot_g (id, aauthor) VALUES";

while(($buf=fgets($handle, 1000)) !== false){

list($id,$field) = explode("#",$buf);

$str .= sprintf('(%d,'%s'),',$id,$field);

$count++;

}

$str.="(3955,'3955')";

$dup="ON DUPLICATE KEY UPDATE aauthor=VALUES(aauthor);";

$sql=$ins.$str.$dup;

//echo $sql."\n";

if(!mysql_query($sql))

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/508962
推荐阅读
相关标签
  

闽ICP备14008679号