我有这段代码将数据从文本文件加载到MySQL
表中。但我不知道为什么它不起作用。
我的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
}
当我写任何其他查询代替此查询时,它工作正常。只有这个查询导致问题。
我在mysql workbench中运行了查询,并且工作正常。
答案 0 :(得分:3)
“使用正斜杠而不是反斜杠指定Windows路径名。如果使用反斜杠,则必须将它们加倍。” - http://dev.mysql.com/doc/refman/5.1/en/load-data.html