}
// check for PHP's MySQL native driver
- /*
$sql = "SELECT 1";
$statement = $db->prepareStatement($sql);
$statement->execute();
// MySQL native driver understands data types, libmysqlclient does not
if ($statement->fetchSingleColumn() !== 1) {
- throw new SystemException("MySQLnd is not being used for database communication.");
+ throw new SystemException("MySQL Native Driver is not being used for database communication.");
}
- */
// check for table conflicts
$conflictedTables = $this->getConflictedTables($db);