1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

sqlite doesn't support getListDatabasesSQL

This commit is contained in:
Jeremy 2015-02-22 17:18:54 +01:00
parent 0bf99bb144
commit 732c2ad897
3 changed files with 13 additions and 2 deletions

View file

@ -283,6 +283,17 @@ class InstallCommand extends ContainerAwareCommand
throw $exception;
}
// custom verification for sqlite, since `getListDatabasesSQL` doesn't work for sqlite
if ('sqlite' == $schemaManager->getDatabasePlatform()->getName()) {
$params = $this->getContainer()->get('doctrine.dbal.default_connection')->getParams();
if (isset($params['path']) && file_exists($params['path'])) {
return true;
}
return false;
}
return in_array($databaseName, $schemaManager->listDatabases());
}