-
-
Save MushuLeDragon/331f2be465f8d94ccd6adb7c9dbd28f6 to your computer and use it in GitHub Desktop.
PHP PDO sql file import.
This file contains hidden or 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>"; | |
} | |
} | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment