Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

मैं PHP का उपयोग करके mysql डेटाबेस में .sql फ़ाइल कैसे आयात करूं?

<ब्लॉकक्वॉट>

चेतावनी: mysql_* एक्सटेंशन को PHP 5.5.0 के रूप में हटा दिया गया है, और इसे PHP 7.0.0 के रूप में हटा दिया गया है। इसके बजाय, या तो mysqli या PDO_MySQL एक्सटेंशन का इस्तेमाल किया जाना चाहिए। यह भी देखें MySQL API सिंहावलोकन MySQL API चुनते समय और सहायता के लिए।
जब भी संभव हो, MySQL में फ़ाइल आयात करना MySQL क्लाइंट को सौंप दिया जाना चाहिए।

मेरे पास ऐसा करने का एक और तरीका है, इसे आजमाएं

<?php

// 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";
?>

यह मेरे लिए काम कर रहा है



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. रिलेशनल डेटाबेस मैनेजमेंट सिस्टम (RDBMS):MSSQL बनाम MySQL

  2. LCASE () फ़ंक्शन MySQL में कैसे काम करता है

  3. MySQL प्रदर्शन:SQL में शामिल होने का परिचय

  4. MySQL कई मानों की तरह

  5. PhpMyAdmin में विदेशी कुंजी सेट करना?