Check the new connection on setup like with PostgreSQL and Oracle

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-02-05 11:08:18 +01:00 committed by John Molakvoæ (skjnldsv)
parent 07e7f79a8e
commit b48daab731
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
1 changed files with 10 additions and 0 deletions

View File

@ -56,6 +56,16 @@ class MySQL extends AbstractDatabase {
//fill the database if needed
$query='select count(*) from information_schema.tables where table_schema=? AND table_name = ?';
$connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']);
$connection->close();
$connection = $this->connect();
try {
$connection->connect();
} catch (\Exception $e) {
$this->logger->logException($e);
throw new \OC\DatabaseSetupException($this->trans->t('MySQL username and/or password not valid'),
$this->trans->t('You need to enter details of an existing account.'));
}
}
/**