Created
January 9, 2015 05:27
-
-
Save b4oshany/0698d9f32589b77abdcb to your computer and use it in GitHub Desktop.
PHP PDO sql file import.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace libs\mysql; | |
class PDODbImporter{ | |
private static $keywords = array( | |
'ALTER', 'CREATE', 'DELETE', 'DROP', 'INSERT', | |
'REPLACE', 'SELECT', 'SET', 'TRUNCATE', 'UPDATE', 'USE', | |
'DELIMITER', 'END' | |
); | |
/** | |
* Loads an SQL stream into the database one command at a time. | |
* | |
* @params $sqlfile The file containing the mysql-dump data. | |
* @params $connection Instance of a PDO Connection Object. | |
* @return boolean Returns true, if SQL was imported successfully. | |
* @throws Exception | |
*/ | |
public static function importSQL($sqlfile, $connection) | |
{ | |
# read file into array | |
$file = file($sqlfile); | |
# import file line by line | |
# and filter (remove) those lines, beginning with an sql comment token | |
$file = array_filter($file, | |
create_function('$line', | |
'return strpos(ltrim($line), "--") !== 0;')); | |
# and filter (remove) those lines, beginning with an sql notes token | |
$file = array_filter($file, | |
create_function('$line', | |
'return strpos(ltrim($line), "/*") !== 0;')); | |
$sql = ""; | |
$del_num = false; | |
foreach($file as $line){ | |
$query = trim($line); | |
try | |
{ | |
$delimiter = is_int(strpos($query, "DELIMITER")); | |
if($delimiter || $del_num){ | |
if($delimiter && !$del_num ){ | |
$sql = ""; | |
$sql = $query."; "; | |
echo "OK"; | |
echo "<br/>"; | |
echo "---"; | |
echo "<br/>"; | |
$del_num = true; | |
}else if($delimiter && $del_num){ | |
$sql .= $query." "; | |
$del_num = false; | |
echo $sql; | |
echo "<br/>"; | |
echo "do---do"; | |
echo "<br/>"; | |
$connection->exec($sql); | |
$sql = ""; | |
}else{ | |
$sql .= $query."; "; | |
} | |
}else{ | |
$delimiter = is_int(strpos($query, ";")); | |
if($delimiter){ | |
$connection->exec("$sql $query"); | |
echo "$sql $query"; | |
echo "<br/>"; | |
echo "---"; | |
echo "<br/>"; | |
$sql = ""; | |
}else{ | |
$sql .= " $query"; | |
} | |
} | |
} | |
catch (\Exception $e) | |
{ | |
echo $e->getMessage() . "<br /> <p>The sql is: $query</p>"; | |
} | |
} | |
} | |
} | |
?> |
Is it okay with PhpMyAdmin dumped sql files??
Great Job ! Works for me. THANKS
Deprecated: Function create_function() is deprecated.
$file = array_filter($file, function ($line) {
return strpos(ltrim($line), "--") !== 0;
});
$file = array_filter($file, function ($line) {
return strpos(ltrim($line), "/*") !== 0;
});
Still a good solution to "MySQL server has gone away" issue when importing large database. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works for the most parts. Only problem I'm having is importing store procedures.