使用PHP 將.sql 檔案匯入MySQL
嘗試透過PHP 程式碼匯入.sql 檔案時,使用者可能會遇到以下錯誤: 「導入過程中出現錯誤。」若要解決此問題,應考慮以下步驟:
提供的程式碼使用已棄用的mysql_ 擴充。為了獲得更穩定的功能,請考慮切換到 mysqli 或 PDO_MySQL 擴充。但是,如果需要使用 mysql_ 擴展,請確保在 PHP 配置中安裝並啟用它。
此外,給定的程式碼部分顯示輸入檔的名稱和其他關鍵資訊。為避免潛在的混淆,請務必確保匯入檔案的路徑和名稱正確。該檔案應位於與腳本相同的目錄中,並可由 PHP 存取。
或者,可以使用更全面的解決方案將.sql 檔案匯入MySQL:
// Name of the file $filename = 'churc.sql'; // MySQL host $mysql_host = 'localhost'; // MySQL username $mysql_username = 'root'; // MySQL password $mysql_password = ''; // Database name $mysql_database = 'dump'; // Connect to MySQL server mysql_connect($mysql_host, $mysql_username, $mysql_password) or die('Error connecting to MySQL server: ' . mysql_error()); // Select database mysql_select_db($mysql_database) or die('Error selecting MySQL database: ' . mysql_error()); // Temporary variable, used to store current query $templine = ''; // Read in entire file $lines = file($filename); // Loop through each line foreach ($lines as $line) { // Skip it if it's a comment if (substr($line, 0, 2) == '--' || $line == '') continue; // Add this line to the current segment $templine .= $line; // If it has a semicolon at the end, it's the end of the query if (substr(trim($line), -1, 1) == ';') { // Perform the query mysql_query($templine) or print('Error performing query \'<strong>' . $templine . '\': ' . mysql_error() . '<br /><br />'); // Reset temp variable to empty $templine = ''; } } echo "Tables imported successfully";
透過合併透過這些步驟,您可以使用PHP 有效地將.sql 檔案匯入MySQL 資料庫,確保過程順利且無錯誤。
以上是如何使用 PHP 排除故障並將 .sql 檔案有效匯入 MySQL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!