首頁 > 資料庫 > mysql教程 > 如何使用 PHP 排除故障並將 .sql 檔案有效匯入 MySQL?

如何使用 PHP 排除故障並將 .sql 檔案有效匯入 MySQL?

Linda Hamilton
發布: 2024-11-29 11:06:12
原創
345 人瀏覽過

How to Troubleshoot and Effectively Import .sql Files into MySQL Using PHP?

使用PHP 將.sql 檔案匯入MySQL

嘗試透過PHP 程式碼匯入.sql 檔案時,使用者可能會遇到以下錯誤: 「導入過程中出現錯誤。」若要解決此問題,應考慮以下步驟:

提供的程式碼使用已棄用的mysql_ 擴充。為了獲得更穩定的功能,請考慮切換到 mysqliPDO_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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板