Skip to content
Snippets Groups Projects
Commit 78ffc103 authored by Oliver Hader's avatar Oliver Hader Committed by Benni Mack
Browse files

[FOLLOWUP][TASK] Doctrine: Migrate queries in Extbase Typo3DbBackend

Changed to use the QueryBuilder in order to modify restrictions
instead of using Connection::select().

Resolves: #77352
Releases: master
Change-Id: I1bfd93037cd679e4ac1cec29527dd6f00f0adc25
Reviewed-on: https://review.typo3.org/49355


Reviewed-by: default avatarMorton Jonuschat <m.jonuschat@mojocode.de>
Tested-by: default avatarMorton Jonuschat <m.jonuschat@mojocode.de>
Tested-by: default avatarBamboo TYPO3com <info@typo3.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarBenni Mack <benni@typo3.org>
parent 0c153150
Branches
Tags
No related merge requests found
...@@ -313,9 +313,21 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface ...@@ -313,9 +313,21 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface
public function getMaxValueFromTable($tableName, array $where, $columnName) public function getMaxValueFromTable($tableName, array $where, $columnName)
{ {
try { try {
$result = $this->connectionPool->getConnectionForTable($tableName) $queryBuilder = $this->connectionPool->getQueryBuilderForTable($tableName);
->select([$columnName], $tableName, $where, [], [$columnName => 'DESC'], 1) $queryBuilder->getRestrictions()->removeAll();
->fetchColumn(0); $queryBuilder
->select($columnName)
->from($tableName)
->orderBy($columnName, 'DESC')
->setMaxResults(1);
foreach ($where as $fieldName => $value) {
$queryBuilder->andWhere(
$queryBuilder->expr()->eq($fieldName, $queryBuilder->createNamedParameter($value))
);
}
$result = $queryBuilder->execute()->fetchColumn(0);
} catch (DBALException $e) { } catch (DBALException $e) {
throw new SqlErrorException($e->getPrevious()->getMessage(), 1470230770); throw new SqlErrorException($e->getPrevious()->getMessage(), 1470230770);
} }
...@@ -333,9 +345,19 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface ...@@ -333,9 +345,19 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface
public function getRowByIdentifier($tableName, array $where) public function getRowByIdentifier($tableName, array $where)
{ {
try { try {
$row = $this->connectionPool->getConnectionForTable($tableName) $queryBuilder = $this->connectionPool->getQueryBuilderForTable($tableName);
->select(['*'], $tableName, $where) $queryBuilder->getRestrictions()->removeAll();
->fetch(); $queryBuilder
->select('*')
->from($tableName);
foreach ($where as $fieldName => $value) {
$queryBuilder->andWhere(
$queryBuilder->expr()->eq($fieldName, $queryBuilder->createNamedParameter($value))
);
}
$row = $queryBuilder->execute()->fetch();
} catch (DBALException $e) { } catch (DBALException $e) {
throw new SqlErrorException($e->getPrevious()->getMessage(), 1470230771); throw new SqlErrorException($e->getPrevious()->getMessage(), 1470230771);
} }
...@@ -917,7 +939,13 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface ...@@ -917,7 +939,13 @@ class Typo3DbBackend implements BackendInterface, SingletonInterface
$storagePage = null; $storagePage = null;
$columns = $this->databaseHandle->admin_get_fields($tableName); $columns = $this->databaseHandle->admin_get_fields($tableName);
if (array_key_exists('pid', $columns)) { if (array_key_exists('pid', $columns)) {
$result = $this->connectionPool->getConnectionForTable($tableName)->select(['pid'], $tableName, ['uid' => (int)$uid]); $queryBuilder = $this->connectionPool->getQueryBuilderForTable($tableName);
$queryBuilder->getRestrictions()->removeAll();
$result = $queryBuilder
->select('pid')
->from($tableName)
->where($queryBuilder->expr()->eq('uid', (int)$uid))
->execute();
if ($row = $result->fetch()) { if ($row = $result->fetch()) {
$storagePage = $row['pid']; $storagePage = $row['pid'];
$pageIdsToClear[] = $storagePage; $pageIdsToClear[] = $storagePage;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment