1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-07-30 08:15:57 +02:00

refactor: Use DBAL's executeQuery instead of query (deprecated)

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Dieser Commit ist enthalten in:
Christoph Wurst 2023-09-27 10:43:42 +02:00
Ursprung f134244c90
Commit 6b90ab1953
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: CC42AC2A7F0E56D8
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -159,7 +159,7 @@ class Migrator {
$step = 0;
foreach ($sqls as $sql) {
$this->emit($sql, $step++, count($sqls));
$connection->query($sql);
$connection->executeQuery($sql);
}
if (!$connection->getDatabasePlatform() instanceof MySQLPlatform) {
$connection->commit();

Datei anzeigen

@ -93,7 +93,7 @@ class SqliteAutoincrement implements IRepairStep {
$this->connection->beginTransaction();
foreach ($schemaDiff->toSql($this->connection->getDatabasePlatform()) as $sql) {
$this->connection->query($sql);
$this->connection->executeQuery($sql);
}
$this->connection->commit();
}