2012-08-27 77 views
0

我已經將此代碼從文本文件加載到MySQL表中。但我不知道它爲什麼不起作用。加載數據infile mysql不能在php腳本中工作

我的PHP代碼:

self::$mysqliStmts=DBCon::ConnectToDB(); 
self::$data=DBCon::QueryDataWithoutProcessing("LOAD DATA INFILE 'C:\wamp\www\php\gagster\Others\friends.txt' INTO TABLE gagster.friends");  
mysqli_close(self::$mysqliStmts); 

public static function QueryDataWithoutProcessing($query) 
{ 
    self::ConnectToDB(); 
    self::$QueryResult=self::$mysqli->query("$query");  //process query 
    mysqli_close(self::$mysqli);       //close connection 
    return self::$QueryResult;        //return result 
} 

當我在寫這個地方查詢它的工作原理fine.Only此查詢導致問題的任何其他查詢。

我在mysql workbench中運行了查詢,它也工作正常。

回答