赞
踩
MySQL 1064错误意思是说我的SQL语法错误,然后显示错误的具体位置。
查看待更新的内容,以及执行跟新的php语句。
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))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。