<?php
$filename = '/home/mydbname.sql';
$mysql_host = 'localhost';
$mysql_username = 'root';
$mysql_password = '';
$mysql_database = 'mydbname';
mysql_connect($mysql_host, $mysql_username, $mysql_password) or die('Error connecting to MySQL server: ' . mysql_error());
mysql_select_db($mysql_database) or die('Error selecting MySQL database: ' . mysql_error());
$templine = '';
$lines = file($filename);
foreach ($lines as $line)
{
if (substr($line, 0, 2) == '--' || $line == '')
continue;
$templine .= $line;
if (substr(trim($line), -1, 1) == ';')
{
mysql_query($templine) or print('Error performing query \'<strong>' . $templine . '\': ' . mysql_error() . '<br /><br />');
$templine = '';
}
}
echo "Tables imported successfully";
?>
Maybe importing this way would work, not sure this is what you need but it should work.
Code from How to import .sql file in mysql database using php
You could use the --force (-f)
flag so that MySQL doesn't stop and just log any errors to the console:
mysql -u userName -p -f -D dbName < script.sql
<?php
$lastline = system("mysql -u root -f mydbname < /home/mydbname.sql ",$retval);
echo "
retval:";
print_r($retval);
echo "
lastline:";
print_r($lastline);
?>
PHP docs on exec() specify an additional 2 parameters for output and return value so maybe try getting both and one might include an error message.
Hope this helps