[-] IN : Fixed bug with database creation

This commit is contained in:
Francois Gaillard
2013-07-03 12:19:34 +02:00
parent 5789e6eb51
commit 8d3f330b2d
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -51,10 +51,10 @@ class DbPDOCore extends Db
try {
$link = DbPDO::_getPDO($host, $user, $password, false);
$success = $link->exec('CREATE DATABASE `'.bqSQL($dbname).'`');
if ($dropit)
$success &= $link->exec('DROP DATABASE `'.bqSQL($dbname).'`');
if ($dropit && ($link->exec('DROP DATABASE `'.bqSQL($dbname).'`') !== false))
return true;
} catch (PDOException $e) {
$success = false;
return false;
}
return $success;
}