我有这段代码可以将文本文件中的数据加载到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 中运行了查询,它也运行良好。