Home >Backend Development >PHP Tutorial >CSV插入数据库怎么查看没有插入成功的数据

CSV插入数据库怎么查看没有插入成功的数据

WBOY
WBOYOriginal
2016-06-13 11:53:431072browse

CSV插入数据库如何查看没有插入成功的数据
读取一个csv的时候插入数据库,发现有些插入成功了,有些没有插入成功,怎么样看那些没有插入成功的呢

我的PHP代码是这样的

<br />  <?php<br />	$link=mysql_connect('localhost','roots','2014222')or die('不能连接到数据库');<br />	mysql_select_db('numdata',$link)or die('不能选择数据库numdata');<br />	mysql_query('set names utf8');<br />	<br />	$file=fopen('u5.csv','r');	<br /><br />	while($out=fgetcsv($file)){<br />		$sql="insert into pro values(null,'{$out[0]}','{$out[1]}','{$out[2]}','{$out[3]}','{$out[4]}','{$out[5]}','{$out[6]}','{$out[7]}','{$out[8]}','{$out[9]}','{$out[10]}','{$out[11]}','{$out[12]}','{$out[13]}','{$out[15]}','{$out[16]}','{$out[17]}','{$out[18]}')";<br />			if(mysql_query($sql)){<br />				$row++;<br />			}<br />		//echo $sql;<br />		echo '成功插入<h1>'.$row.'</h1>条数据';<br />	<br />	}<br /><br /><br />?><br />

------解决方案--------------------
if(mysql_query($sql)){<br />                $row++;<br />}else{<br />      echo $sql;  //输出执行失败的sql<br />}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn