SQL查询错误

时间:2014-04-19 05:59:02

标签: mysql

我正在尝试将分隔的文本文件插入到sql表中。 错误是: 您的SQL语法有错误;检查与MySQL服务器版本对应的手册,以便在第1行的'Outlet View All','1 rows')附近使用正确的语法

我无法找到错误以及正确的语法。请帮忙 。

      $handler=fopen("textlocal.txt", "r");
      while (!feof($handler)) // Loop til end of file.
      {
         $line= fgets($handler);     // Read a line.
         $list=explode("|",$line);   //Separate string by the means of |

        $sql = "INSERT INTO tb (tb1,tb2,tb3) VALUES('$list[0]','$list[1]','$list[2]')";   
        mysql_query($sql,$conn) or die(mysql_error());

       $result= mysql_query($sql);


        if(!$result)
        {die("Database acess failed:".mysql_error());}
        else
        {
            echo "I am inside ";
        }
      } 
      unset($handler); 

0 个答案:

没有答案